This repository has been archived on 2024-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
sota/flake.nix

29 lines
690 B
Nix

{
description = "flake for running the sota staircase ReStepper";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
with pkgs; {
devShells.default = mkShellNoCC {
buildInputs = [
git
git-lfs
git-filter-repo
(python312.withPackages (python-pkgs: [
python-pkgs.tqdm
python-pkgs.gitignore-parser
]))
];
};
}
);
}