diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-08-14 16:16:50 +0200 |
|---|---|---|
| committer | Vagrant Cascadian <vagrant@debian.org> | 2025-08-15 15:41:00 -0700 |
| commit | a0dc399028ae3e653b2e8c0111ddf2eae9cb7d42 (patch) | |
| tree | 35d3dd36f4bd6060f5b89921a38f02e55f7ef3f8 | |
| parent | a9bb71571f913a58a0c422aa8851ffefda585ed2 (diff) | |
gnu: Add elxr-archive-keyring.
* gnu/packages/debian.scm (elxr-archive-keyring): New variable.
Signed-off-by: Vagrant Cascadian <vagrant@debian.org>
| -rw-r--r-- | gnu/packages/debian.scm | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gnu/packages/debian.scm b/gnu/packages/debian.scm index bf6143f02e9..49cd6cad149 100644 --- a/gnu/packages/debian.scm +++ b/gnu/packages/debian.scm @@ -158,6 +158,39 @@ contains the archive keys used for that.") ;; "The keys in the keyrings don't fall under any copyright." (license license:public-domain))) +(define-public elxr-archive-keyring + (package + (name "elxr-archive-keyring") + (version "2024.1") + (source + (origin + (method git-fetch) + (uri + (git-reference + (url "https://gitlab.com/elxr/packages/elxr-archive-keyring") + (commit (string-append "upstream/" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1cw7sn22g82g01g7xb4fp8pb6nvb4lck269w1i91rfcmhqxb4iz7")))) + (build-system gnu-build-system) + (arguments + (list + #:tests? #f + #:phases + #~(modify-phases %standard-phases + (delete 'configure) + (replace 'install + (lambda _ + (install-file "elxr-archive-keyring.gpg" + (string-append #$output "/share/keyrings/"))))))) + (native-inputs (list gnupg)) + (home-page "https://pkg.elxr.org/pkg/elxr-archive-keyring") + (synopsis "GnuPG archive keys of the Elxr archive") + (description "The Elxr distribution signs its packages. This package +contains the archive keys used for that.") + (license (list license:public-domain ;; the keys + license:gpl2+)))) + (define-public kali-archive-keyring (package (name "kali-archive-keyring") |
