2024-09-30 12:06:14 +00:00
|
|
|
with import <nixpkgs> {};
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "nixin";
|
|
|
|
buildInputs = [
|
|
|
|
nodejs # for vitepress
|
|
|
|
nixos-generators # for building images
|
|
|
|
];
|
|
|
|
shellHook = ''
|
|
|
|
export PATH="$PWD/node_modules/.bin/:$PATH"
|
2024-09-30 12:41:33 +00:00
|
|
|
npm install
|
|
|
|
npm run
|
2024-09-30 12:06:14 +00:00
|
|
|
'';
|
|
|
|
}
|