mirror of
https://github.com/Mic92/sops-nix.git
synced 2024-12-15 17:50:51 +00:00
11 lines
135 B
Nix
11 lines
135 B
Nix
{
|
|
pkgs ? import <nixpkgs> { },
|
|
}:
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
go
|
|
delve
|
|
util-linux
|
|
gnupg
|
|
];
|
|
}
|