Add triton to nix shell

pull/2/head
Benjamin Bädorf 2022-01-16 16:31:39 +01:00
parent 21187c992c
commit aefe01700a
No known key found for this signature in database
GPG Key ID: 4406E80E13CD656C
1 changed files with 3 additions and 1 deletions

View File

@ -3,9 +3,11 @@ mkShell {
buildInputs = [ buildInputs = [
nodejs nodejs
deno deno
nodePackages.json
nodePackages.triton
]; ];
shellHook = '' shellHook = ''
export PATH="$PATH:/home/ben/.deno/bin" eval "$(triton env --triton)"
''; '';
} }