nixin-backend/shell.nix
2024-10-03 14:11:40 +03:00

11 lines
166 B
Nix

with import <nixpkgs> {};
stdenv.mkDerivation {
name = "nixin-backend";
buildInputs = [
go
];
shellHook = ''
PATH=$PATH:~/go/bin
'';
}