1
0
Fork 0
mirror of https://github.com/Mic92/sops-nix.git synced 2025-03-14 04:39:02 +00:00
sops-nix/shell.nix

24 lines
308 B
Nix
Raw Normal View History

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