nixpkgs/pkgs/development/node-packages/shell-generate.nix
Matthieu Coudron 33323e4006 node updater improvements
- Make it run from anywhere
- overwrite old packages only on success to prevent getting into a bad
state
2020-02-27 00:34:11 +01:00

10 lines
151 B
Nix

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