diff options
| author | Seth Flynn <[email protected]> | 2025-03-12 01:18:35 -0400 |
|---|---|---|
| committer | Seth Flynn <[email protected]> | 2025-03-12 20:26:38 -0400 |
| commit | 6cf2d778397d8e21d9100589f35fb402fa9beb56 (patch) | |
| tree | b3287c2e5418446b22488041af44dc9ddc81c519 /ci-shell.nix | |
| parent | fa4eb3a1ab14173cf27be23c0fde71a4c73f974c (diff) | |
nix: flake.nix -> shell.nix
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; + }; +} |
