pub.solar/shell.nix

14 lines
257 B
Nix
Raw Normal View History

2022-10-02 18:46:42 +00:00
with (import (fetchTarball https://github.com/nixos/nixpkgs/archive/nixpkgs-unstable.tar.gz) {});
mkShell {
2021-05-30 14:55:34 +00:00
buildInputs = [
2022-10-02 18:46:42 +00:00
nodejs
deno
nodePackages.json
nodePackages.triton
2021-05-30 14:55:34 +00:00
];
2022-10-02 18:46:42 +00:00
shellHook = ''
eval "$(triton env --triton)"
'';
2021-05-30 14:55:34 +00:00
}