1
0
Fork 0
mirror of https://github.com/Mic92/sops-nix.git synced 2024-12-14 11:57:52 +00:00
sops-nix/shell.nix

24 lines
308 B
Nix
Raw Normal View History

2024-11-17 11:17:45 +00:00
{
2024-11-17 13:59:50 +00:00
mkShell,
bashInteractive,
go,
delve,
gnupg,
util-linux,
nix,
golangci-lint,
2024-11-17 11:17:45 +00:00
}:
2024-11-17 13:59:50 +00:00
mkShell {
nativeBuildInputs = [
2020-07-12 16:06:59 +00:00
bashInteractive
go
delve
gnupg
2022-09-26 14:28:23 +00:00
util-linux
nix
2020-07-19 22:34:01 +00:00
golangci-lint
2020-07-12 16:06:59 +00:00
];
# delve does not compile with hardening enabled
hardeningDisable = [ "all" ];
}