14 lines
257 B
Nix
14 lines
257 B
Nix
with (import (fetchTarball https://github.com/nixos/nixpkgs/archive/nixpkgs-unstable.tar.gz) {});
|
|
mkShell {
|
|
buildInputs = [
|
|
nodejs
|
|
deno
|
|
nodePackages.json
|
|
nodePackages.triton
|
|
];
|
|
|
|
shellHook = ''
|
|
eval "$(triton env --triton)"
|
|
'';
|
|
}
|