1
0
Fork 0
mirror of https://github.com/Mic92/sops-nix.git synced 2025-03-06 08:37:21 +00:00
sops-nix/pkgs/sops-pgp-hook/test-assets/shell.nix
2020-07-14 11:26:54 +01:00

14 lines
244 B
Nix

# shell.nix
with import <nixpkgs> {};
mkShell {
sopsPGPKeyDirs = [
"./keys"
];
sopsPGPKeys = [
"./existing-key.gpg"
"./non-existing-key.gpg"
];
nativeBuildInputs = [
(pkgs.callPackage ../../.. {}).sops-pgp-hook
];
}