exposed via nix registry :D can be used in nix-direnv like `use flake shells#cs.osu`
19 lines
229 B
Nix
19 lines
229 B
Nix
{
|
|
mkShell,
|
|
|
|
nodejs-16_x,
|
|
nodePackages,
|
|
watchman
|
|
}:
|
|
mkShell {
|
|
buildInputs = [
|
|
nodejs-16_x
|
|
watchman
|
|
|
|
nodePackages.pnpm
|
|
];
|
|
|
|
shellHook = ''
|
|
export PATH="$(readlink -f ./node_modules/.bin):$PATH"
|
|
'';
|
|
}
|