nixin-backend/shell.nix

12 lines
166 B
Nix
Raw Normal View History

2024-10-03 09:26:34 +00:00
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "nixin-backend";
buildInputs = [
go
];
shellHook = ''
2024-10-03 11:11:40 +00:00
PATH=$PATH:~/go/bin
2024-10-03 09:26:34 +00:00
'';
}