gnu: Add trisquel-keyring.
* gnu/packages/debian.scm (trisquel-keyring): New variable. Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
3876c3a7c2
commit
15a9652e74
1 changed files with 25 additions and 0 deletions
|
@ -2,6 +2,7 @@
|
||||||
;;; Copyright © 2018, 2020-2024 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2018, 2020-2024 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2018, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2018, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2020 Marius Bakke <marius@gnu.org>
|
;;; Copyright © 2020 Marius Bakke <marius@gnu.org>
|
||||||
|
;;; Copyright © 2023 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -24,6 +25,7 @@
|
||||||
#:use-module (guix git-download)
|
#:use-module (guix git-download)
|
||||||
#:use-module (guix gexp)
|
#:use-module (guix gexp)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
|
#:use-module (guix build-system copy)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (guix build-system trivial)
|
#:use-module (guix build-system trivial)
|
||||||
#:use-module (gnu packages autotools)
|
#:use-module (gnu packages autotools)
|
||||||
|
@ -146,6 +148,29 @@ contains the archive keys used for that.")
|
||||||
;; "The keys in the keyrings don't fall under any copyright."
|
;; "The keys in the keyrings don't fall under any copyright."
|
||||||
(license license:public-domain)))
|
(license license:public-domain)))
|
||||||
|
|
||||||
|
(define-public trisquel-keyring
|
||||||
|
(package
|
||||||
|
(name "trisquel-keyring")
|
||||||
|
(version "2022.10.19")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"http://archive.trisquel.info/trisquel/"
|
||||||
|
"pool/main/t/trisquel-keyring/trisquel-keyring_"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1qkqm3wb945i2izm47xni21hi3ad807bvl106r2mnwdxnjs4ij08"))))
|
||||||
|
(build-system copy-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:install-plan '(("keyrings/trisquel-archive-keyring.gpg"
|
||||||
|
"share/keyrings/"))))
|
||||||
|
(home-page "http://archive.trisquel.info/trisquel/pool/main/t/trisquel-keyring")
|
||||||
|
(synopsis "GnuPG archive keys of the Trisquel archive")
|
||||||
|
(description "The Trisquel distribution signs its packages. This package
|
||||||
|
contains the archive keys used for that.")
|
||||||
|
(license license:gpl2+))) ;; see debian/copyright
|
||||||
|
|
||||||
(define-public ubuntu-keyring
|
(define-public ubuntu-keyring
|
||||||
(package
|
(package
|
||||||
(name "ubuntu-keyring")
|
(name "ubuntu-keyring")
|
||||||
|
|
Reference in a new issue