diff options
Diffstat (limited to 'ci-shell.nix')
| -rw-r--r-- | ci-shell.nix | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ci-shell.nix b/ci-shell.nix new file mode 100644 index 0000000..0b18d3e --- /dev/null +++ b/ci-shell.nix @@ -0,0 +1,18 @@ +{ + pkgs ? import <nixpkgs> { + inherit system; + config = { }; + overlays = [ ]; + }, + system ? builtins.currentSystem, +}: + +let + inherit (pkgs) lib; +in + +pkgs.mkShellNoCC { + packages = lib.attrValues { + inherit (pkgs) corepack nodejs nrr; + }; +} |
