summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/debian.scm13
1 files changed, 6 insertions, 7 deletions
diff --git a/gnu/packages/debian.scm b/gnu/packages/debian.scm
index 728f2cc845f..b0a0b9e5d35 100644
--- a/gnu/packages/debian.scm
+++ b/gnu/packages/debian.scm
@@ -149,15 +149,15 @@ contains the archive keys used for that.")
149(define-public ubuntu-keyring 149(define-public ubuntu-keyring
150 (package 150 (package
151 (name "ubuntu-keyring") 151 (name "ubuntu-keyring")
152 (version "2021.03.26") 152 (version "2023.11.28.1")
153 (source 153 (source
154 (origin 154 (origin
155 (method url-fetch) 155 (method url-fetch)
156 (uri (string-append "https://launchpad.net/ubuntu/+archive/primary/" 156 (uri (string-append "https://launchpad.net/ubuntu/+archive/primary/"
157 "+files/" name "_" version ".tar.gz")) 157 "+files/" name "_" version ".tar.xz"))
158 (sha256 158 (sha256
159 (base32 159 (base32
160 "1ccvwh4s51viyhcg8gh189jmvbrhc5wv1bbp4minz3200rffsbj9")))) 160 "0bmafky67hrb79baaydmw7al21lz0wgi4ks5dqfkfqamw5d4bkdf"))))
161 (build-system trivial-build-system) 161 (build-system trivial-build-system)
162 (arguments 162 (arguments
163 `(#:modules ((guix build utils)) 163 `(#:modules ((guix build utils))
@@ -167,7 +167,7 @@ contains the archive keys used for that.")
167 (apt (string-append out "/etc/apt/trusted.gpg.d/")) 167 (apt (string-append out "/etc/apt/trusted.gpg.d/"))
168 (key (string-append out "/share/keyrings/"))) 168 (key (string-append out "/share/keyrings/")))
169 (setenv "PATH" (string-append 169 (setenv "PATH" (string-append
170 (assoc-ref %build-inputs "gzip") "/bin:" 170 (assoc-ref %build-inputs "xz") "/bin:"
171 (assoc-ref %build-inputs "tar") "/bin")) 171 (assoc-ref %build-inputs "tar") "/bin"))
172 (invoke "tar" "xvf" (assoc-ref %build-inputs "source")) 172 (invoke "tar" "xvf" (assoc-ref %build-inputs "source"))
173 (for-each (lambda (file) 173 (for-each (lambda (file)
@@ -175,10 +175,9 @@ contains the archive keys used for that.")
175 (find-files "." "ubuntu-[^am].*\\.gpg$")) 175 (find-files "." "ubuntu-[^am].*\\.gpg$"))
176 (for-each (lambda (file) 176 (for-each (lambda (file)
177 (install-file file key)) 177 (install-file file key))
178 (find-files "." "ubuntu-[am].*\\.gpg$"))) 178 (find-files "." "ubuntu-[am].*\\.gpg$"))))))
179 #t)))
180 (native-inputs 179 (native-inputs
181 (list tar gzip)) 180 (list tar xz))
182 (home-page "https://launchpad.net/ubuntu/+source/ubuntu-keyring") 181 (home-page "https://launchpad.net/ubuntu/+source/ubuntu-keyring")
183 (synopsis "GnuPG keys of the Ubuntu archive") 182 (synopsis "GnuPG keys of the Ubuntu archive")
184 (description 183 (description