]> git.scottworley.com Git - auto-upgrade-with-pinch/blob - pkgs/homeless-gpg.nix
25.11: Formatting: nixfmt-classic → nixfmt-rfc-style
[auto-upgrade-with-pinch] / pkgs / homeless-gpg.nix
1 {
2 coreutils,
3 gnupg,
4 writeShellScript,
5 }:
6 writeShellScript "homeless-gpg" ''
7 set -eo pipefail
8
9 export GNUPGHOME=$(${coreutils}/bin/mktemp -d)
10 trap '${coreutils}/bin/rm -r "$GNUPGHOME"' EXIT
11 ${gnupg}/bin/gpg --no-default-keyring "$@"
12 ''