29 lines
690 B
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
|
||
|
]))
|
||
|
];
|
||
|
};
|
||
|
}
|
||
|
);
|
||
|
}
|