1
0
Fork 0
mirror of https://github.com/Mic92/sops-nix.git synced 2025-03-06 00:27:18 +00:00
sops-nix/shell.nix

15 lines
258 B
Nix
Raw Normal View History

2020-07-12 17:06:59 +01:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
bashInteractive
go
delve
gnupg
utillinux
2020-07-14 11:20:35 +01:00
nix
2020-07-19 23:34:01 +01:00
golangci-lint
2020-07-12 17:06:59 +01:00
];
# delve does not compile with hardening enabled
hardeningDisable = [ "all" ];
}