From 6cf2d778397d8e21d9100589f35fb402fa9beb56 Mon Sep 17 00:00:00 2001 From: Seth Flynn Date: Wed, 12 Mar 2025 01:18:35 -0400 Subject: nix: flake.nix -> shell.nix --- ci-shell.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 ci-shell.nix (limited to 'ci-shell.nix') 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 { + inherit system; + config = { }; + overlays = [ ]; + }, + system ? builtins.currentSystem, +}: + +let + inherit (pkgs) lib; +in + +pkgs.mkShellNoCC { + packages = lib.attrValues { + inherit (pkgs) corepack nodejs nrr; + }; +} -- cgit v1.2.3