mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-13 15:43:39 +00:00
![Matthieu Coudron](/assets/img/avatar_default.png)
- 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 ./.;
|
|
}
|
|
|