mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
10 lines
151 B
Nix
10 lines
151 B
Nix
|
{ nixpkgs ? import ../../.. {} }:
|
||
|
with nixpkgs;
|
||
|
mkShell {
|
||
|
buildInputs = [
|
||
|
bash nodePackages.node2nix
|
||
|
];
|
||
|
NODE_NIXPKGS_PATH = toString ./.;
|
||
|
}
|
||
|
|