mirror of
https://github.com/Mic92/sops-nix.git
synced 2024-12-15 17:50:51 +00:00
13 lines
240 B
Nix
13 lines
240 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
bashInteractive
|
|
go
|
|
delve
|
|
gnupg
|
|
utillinux
|
|
nix
|
|
];
|
|
# delve does not compile with hardening enabled
|
|
hardeningDisable = [ "all" ];
|
|
}
|