2021-09-24 21:33:55 +00:00
|
|
|
with (import (fetchTarball https://github.com/nixos/nixpkgs/archive/nixpkgs-unstable.tar.gz) {});
|
|
|
|
mkShell {
|
2021-09-22 20:22:04 +00:00
|
|
|
buildInputs = [
|
2021-09-24 21:33:55 +00:00
|
|
|
nodejs
|
|
|
|
deno
|
2021-09-22 20:22:04 +00:00
|
|
|
];
|
2021-09-24 21:33:55 +00:00
|
|
|
|
|
|
|
shellHook = ''
|
|
|
|
export PATH="$PATH:/home/ben/.deno/bin"
|
|
|
|
'';
|
2021-09-22 20:22:04 +00:00
|
|
|
}
|