9 lines
166 B
Nix
9 lines
166 B
Nix
{ nixpkgs ? import ../../.. {} }:
|
|
with nixpkgs;
|
|
mkShell {
|
|
buildInputs = [
|
|
bash nodePackages.node2nix
|
|
];
|
|
NODE_NIXPKGS_PATH = builtins.toString ../../../.;
|
|
}
|