lenticular_cloud2/shell.nix
2022-02-04 21:47:01 +01:00

13 lines
297 B
Nix

{
pkgs ? import <nixpkgs> {},
python ? pkgs.python39
}:
let
settings = import ./default.nix {inherit pkgs python;};
in
pkgs.mkShell {
# nativeBuildInputs is usually what you want -- tools you need to run
nativeBuildInputs = settings.nativeBuildInputs ++ settings.testBuildInputs;
}