diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-08-14 14:58:03 +0200 |
|---|---|---|
| committer | Vagrant Cascadian <vagrant@debian.org> | 2025-08-15 15:40:51 -0700 |
| commit | e97f5f458ea942f72b98636ab736b6fde32ee347 (patch) | |
| tree | 7f24cb9931b5a82fad13fe14d8d2d5b74bc81824 /gnu/packages | |
| parent | 3fc6c9bfc56834606de9a6e0b75f11f1bece2036 (diff) | |
gnu: Add kali-archive-keyring.
* gnu/packages/debian.scm (kali-archive-keyring): New variable.
Signed-off-by: Vagrant Cascadian <vagrant@debian.org>
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/debian.scm | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/gnu/packages/debian.scm b/gnu/packages/debian.scm index c54473f6f1c..ea712c93df6 100644 --- a/gnu/packages/debian.scm +++ b/gnu/packages/debian.scm @@ -158,6 +158,41 @@ contains the archive keys used for that.") ;; "The keys in the keyrings don't fall under any copyright." (license license:public-domain))) +(define-public kali-archive-keyring + (package + (name "kali-archive-keyring") + (version "2025.1") + (source + (origin + (method git-fetch) + (uri + (git-reference + (url "https://gitlab.com/kalilinux/packages/kali-archive-keyring") + (commit (string-append "kali/" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07iwh24myf3s2ziqd2wwzclm48vyv0qvddz0rb6771laaal4wd7w")) + (modules '((guix build utils))) + (snippet #~(delete-file-recursively "debian")))) + (build-system gnu-build-system) + (arguments + (list + #:tests? #f + #:phases + #~(modify-phases %standard-phases + (delete 'configure) + (replace 'install + (lambda _ + (install-file "kali-archive-keyring.gpg" + (string-append #$output "/share/keyrings/"))))))) + (native-inputs (list gnupg)) + (home-page "https://pkg.kali.org/pkg/kali-archive-keyring") + (synopsis "GnuPG archive keys of the Kali archive") + (description "The Kali distribution signs its packages. This package +contains the archive keys used for that.") + (license (list license:public-domain ;; the keys + license:gpl2+)))) + (define-public pureos-archive-keyring (package (name "pureos-archive-keyring") |
