1
0
Fork 0
mirror of https://github.com/Mic92/sops-nix.git synced 2025-03-19 06:53:02 +00:00
sops-nix/pkgs/sops-pgp-hook/test-assets/shell.nix

15 lines
244 B
Nix
Raw Normal View History

2020-07-14 11:20:35 +01:00
# shell.nix
with import <nixpkgs> {};
mkShell {
sopsPGPKeyDirs = [
"./keys"
];
sopsPGPKeys = [
"./existing-key.gpg"
"./non-existing-key.gpg"
];
nativeBuildInputs = [
(pkgs.callPackage ../../.. {}).sops-pgp-hook
];
}