mirror of
https://github.com/Mic92/sops-nix.git
synced 2024-12-14 11:57:52 +00:00
23 lines
308 B
Nix
23 lines
308 B
Nix
{
|
|
mkShell,
|
|
bashInteractive,
|
|
go,
|
|
delve,
|
|
gnupg,
|
|
util-linux,
|
|
nix,
|
|
golangci-lint,
|
|
}:
|
|
mkShell {
|
|
nativeBuildInputs = [
|
|
bashInteractive
|
|
go
|
|
delve
|
|
gnupg
|
|
util-linux
|
|
nix
|
|
golangci-lint
|
|
];
|
|
# delve does not compile with hardening enabled
|
|
hardeningDisable = [ "all" ];
|
|
}
|