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
2020-07-20 00:13:26 +01:00

14 lines
258 B
Nix

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