lenticular_cloud2/shell.nix
2022-02-04 23:02:27 +01:00

13 lines
356 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 ++ [ pkgs.nodePackages.npm pkgs.nodejs python.pkgs.build ];
}