miom.space/shell.nix

15 lines
213 B
Nix
Raw Normal View History

2023-02-26 17:32:30 +00:00
{ pkgs ? import <nixpkgs> {} }:
2022-01-16 18:32:04 +00:00
pkgs.mkShell {
2022-04-01 08:52:14 +00:00
buildInputs = with pkgs; [
nodejs-16_x
2023-02-26 17:32:30 +00:00
deno
2022-04-01 08:52:14 +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
'';
}