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

17 lines
263 B
Nix
Raw Normal View History

2024-11-17 11:17:45 +00:00
{
pkgs ? import <nixpkgs> { },
}:
2020-07-12 16:06:59 +00:00
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
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" ];
}