12 lines
206 B
Nix
12 lines
206 B
Nix
|
with import <nixpkgs> {};
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
name = "node";
|
||
|
buildInputs = [
|
||
|
nodejs_21
|
||
|
hugo
|
||
|
];
|
||
|
shellHook = ''
|
||
|
export PATH="$PWD/node_modules/.bin/:$PATH"
|
||
|
'';
|
||
|
}
|