33323e4006
- Make it run from anywhere - overwrite old packages only on success to prevent getting into a bad state
10 lines
151 B
Nix
10 lines
151 B
Nix
{ nixpkgs ? import ../../.. {} }:
|
|
with nixpkgs;
|
|
mkShell {
|
|
buildInputs = [
|
|
bash nodePackages.node2nix
|
|
];
|
|
NODE_NIXPKGS_PATH = toString ./.;
|
|
}
|
|
|