diff options
author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2024-03-30 08:55:05 +0100 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-04-02 16:19:16 +0300 |
commit | ea8981cf97a3c2ff64e1a98c122fa13815cc7e02 (patch) | |
tree | 051e6f965f2063722bc96033adf7997a9745d860 /gnu/packages | |
parent | ddffc370ef0c4c0ba57a5e45badf019e6f3b6cbf (diff) | |
download | guix-ea8981cf97a3c2ff64e1a98c122fa13815cc7e02.tar.gz guix-ea8981cf97a3c2ff64e1a98c122fa13815cc7e02.zip |
gnu: Add pureos-archive-keyring.
* gnu/packages/debian.scm (pureos-archive-keyring): New variable.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Change-Id: I80af4b15c7fe20dd40358d4f676a89903060bf07
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/debian.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/debian.scm b/gnu/packages/debian.scm index 1715b963a9..4aa432abfa 100644 --- a/gnu/packages/debian.scm +++ b/gnu/packages/debian.scm @@ -148,6 +148,31 @@ contains the archive keys used for that.") ;; "The keys in the keyrings don't fall under any copyright." (license license:public-domain))) +(define-public pureos-archive-keyring + (package + (name "pureos-archive-keyring") + (version "2021.11.0") + (source (origin + (method url-fetch) + (uri (string-append + "https://repo.puri.sm/pureos/pool/main/p/pureos-archive-keyring/" + "pureos-archive-keyring_" version ".tar.xz")) + (sha256 + (base32 + "1a0d084a98bycyhbw531646rbivvlfkdk6ldshl5dy6fvzmbci0d")))) + (build-system copy-build-system) + (arguments + '(#:install-plan '(("keyrings/pureos-archive-keyring.gpg" + "share/keyrings/") + ("keyrings/pureos-archive-removed-keys.gpg" + "share/keyrings/")))) + (home-page "https://source.puri.sm/pureos/core/pureos-archive-keyring") + (synopsis "GnuPG archive keys of the Pureos archive") + (description "The Pureos distribution signs its packages. This package +contains the archive keys used for that.") + (license (list license:public-domain ;; the keys + license:gpl2+)))) ;; see debian/copyright + (define-public trisquel-keyring (package (name "trisquel-keyring") |