sops-nix/shell.nix
2022-05-15 08:19:33 +02:00

14 lines
264 B
Nix

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