1
0
Fork 0
mirror of https://github.com/Mic92/sops-nix.git synced 2024-12-15 17:50:51 +00:00
sops-nix/shell.nix
2020-07-12 17:06:59 +01:00

12 lines
232 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
bashInteractive
go
delve
gnupg
utillinux
];
# delve does not compile with hardening enabled
hardeningDisable = [ "all" ];
}