birthdaybot/shell.nix

18 lines
374 B
Nix
Raw Normal View History

2023-06-29 17:55:13 +01:00
with import <nixpkgs> {};
mkShell {
buildInputs = [
2023-06-29 22:53:06 +01:00
go
2023-06-29 17:55:13 +01:00
gotestsum
gnumake
modd
];
shellHook = ''
echo '
'
'';
}