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

tests: debian-install: Fix debian-13 qcow2 image.

* gnu/tests/foreign.scm (debian-13-qcow2): Adjust source uri to point to
the same image.

Change-Id: I975140f2febcf0781e6a9c67981b3896629de050
This commit is contained in:
Efraim Flashner
2025-11-23 11:10:13 +02:00
parent f02c8001d7
commit acf95352b9

View File

@@ -285,13 +285,16 @@ of DEB-FILES with 'dpkg -i'."
(define debian-13-qcow2
;; Image taken from <https://www.debian.org/distrib/>.
;; XXX: Those images are periodically removed from debian.org.
(origin
(uri
"https://cloud.debian.org/images/cloud/trixie/latest/debian-13-nocloud-amd64.qcow2")
(method url-fetch)
(sha256
(base32
"0g7kcvz2yzr0xchlv5kc8d2rd2lzk4akh02i43i92cmys7q3r05c"))))
(let ((image-date "20251006-2257"))
(origin
(uri (string-append "https://cloud.debian.org/images/cloud/trixie/"
image-date "/debian-13-nocloud-amd64-"
image-date ".qcow2"))
(method url-fetch)
(file-name "debian-13-nocloud-amd64.qcow2")
(sha256
(base32
"0g7kcvz2yzr0xchlv5kc8d2rd2lzk4akh02i43i92cmys7q3r05c")))))
(define debian-uidmap-deb-file
;; This package provides 'newgidmap' & co., used by the unprivileged daemon.