7 lines
144 B
Nix
7 lines
144 B
Nix
|
with (import (fetchTarball https://github.com/nixos/nixpkgs/archive/nixpkgs-unstable.tar.gz) {});
|
||
|
mkShell {
|
||
|
buildInputs = [
|
||
|
nodejs
|
||
|
];
|
||
|
}
|