hermes/shell.nix
2025-01-10 22:49:59 -05:00

17 lines
224 B
Nix

{
pkgs ? import <nixpkgs> { },
}: pkgs.mkShell {
buildInputs = with pkgs; [
# backend/
nodejs
go
gopls
capnproto
];
shellHook = ''
if [ -f init.sh ]; then
source init.sh
fi
'';
}