mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
5750660f25
If someone blindly copies this code, at least they have a sensible key type.
21 lines
539 B
Nix
21 lines
539 B
Nix
{ pkgs, ... }:
|
|
|
|
pkgs.runCommand "gpg-keyring" { nativeBuildInputs = [ pkgs.gnupg ]; } ''
|
|
mkdir -p $out
|
|
export GNUPGHOME=$out
|
|
cat > foo <<EOF
|
|
%echo Generating a basic OpenPGP key
|
|
%no-protection
|
|
Key-Type: EdDSA
|
|
Key-Curve: ed25519
|
|
Name-Real: Bob Foobar
|
|
Name-Email: bob@foo.bar
|
|
Expire-Date: 0
|
|
# Do a commit here, so that we can later print "done"
|
|
%commit
|
|
%echo done
|
|
EOF
|
|
gpg --batch --generate-key foo
|
|
rm $out/S.gpg-agent $out/S.gpg-agent.*
|
|
gpg --export bob@foo.bar -a > $out/pubkey.gpg
|
|
''
|