mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-13 08:23:25 +00:00
9 lines
166 B
Nix
9 lines
166 B
Nix
{ nixpkgs ? import ../../.. {} }:
|
|
with nixpkgs;
|
|
mkShell {
|
|
buildInputs = [
|
|
bash nodePackages.node2nix
|
|
];
|
|
NODE_NIXPKGS_PATH = builtins.toString ../../../.;
|
|
}
|