miom.space/shell.nix

14 lines
257 B
Nix
Raw Normal View History

2021-10-22 11:13:16 +00:00
with (import (fetchTarball https://github.com/nixos/nixpkgs/archive/nixpkgs-unstable.tar.gz) {});
mkShell {
buildInputs = [
nodejs
deno
2022-01-16 15:31:39 +00:00
nodePackages.json
nodePackages.triton
2021-10-22 11:13:16 +00:00
];
shellHook = ''
2022-01-16 15:31:39 +00:00
eval "$(triton env --triton)"
2021-10-22 11:13:16 +00:00
'';
}