1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: Add pardus-archive-keyring.

* gnu/packages/debian.scm (pardus-archive-keyring): New variable.

Signed-off-by: Vagrant Cascadian <vagrant@debian.org>
This commit is contained in:
Nicolas Graves
2025-08-15 22:41:28 +02:00
committed by Vagrant Cascadian
parent e97f5f458e
commit 27d5cb606d

View File

@@ -193,6 +193,37 @@ contains the archive keys used for that.")
(license (list license:public-domain ;; the keys
license:gpl2+))))
(define-public pardus-archive-keyring
(package
(name "pardus-archive-keyring")
(version "2021.1")
(source
(origin
(method url-fetch)
(uri (string-append "https://depo.pardus.org.tr/pardus/pool/main/p/"
"pardus-archive-keyring/pardus-archive-keyring_"
version ".tar.xz"))
(sha256
(base32 "0h4y9clpcfprx7fq2yy2bb22ykax5a0wlw8zlcq9kbiya83q02yr"))))
(build-system gnu-build-system)
(arguments
(list
#:tests? #f
#:phases
#~(modify-phases %standard-phases
(delete 'configure)
(replace 'install
(lambda _
(install-file "keyrings/pardus-archive-keyring.gpg"
(string-append #$output "/share/keyrings/")))))))
(native-inputs (list jetring))
(home-page "https://tracker.pardus.org.tr/yirmiuc/pardus-archive-keyring")
(synopsis "GnuPG archive keys of the Pardus archive")
(description "The Pardus 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")