1
0
Fork 0
mirror of https://github.com/Mic92/sops-nix.git synced 2025-03-05 16:17:47 +00:00
sops-nix/shell.nix

15 lines
259 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
2022-09-26 16:28:23 +02:00
util-linux
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" ];
}