nixpkgs/pkgs/development/node-packages/shell-generate.nix

9 lines
166 B
Nix

{ nixpkgs ? import ../../.. {} }:
with nixpkgs;
mkShell {
buildInputs = [
bash nodePackages.node2nix
];
NODE_NIXPKGS_PATH = builtins.toString ../../../.;
}