miom.space/shell.nix

19 lines
500 B
Nix
Raw Normal View History

{ pkgs ? import <nixpkgs> {},
2022-04-01 08:52:14 +00:00
nightingale-pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/f7949198dcff52265b322ca8abf7450610e7e49e.tar.gz") {},
unstable ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/nixos-unstable.tar.gz") {}
2022-01-16 18:32:04 +00:00
}:
2022-01-16 18:32:04 +00:00
pkgs.mkShell {
2022-04-01 08:52:14 +00:00
buildInputs = with pkgs; [
2022-01-16 18:32:04 +00:00
nightingale-pkgs.docker-compose
2022-04-01 08:52:14 +00:00
nodejs-16_x
unstable.deno
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
'';
}