gnu: Remove qemu-7.2.4.

The comment is no longer true.

* gnu/packages/virtualization.scm (qemu-7.2.4): Delete variable.

Change-Id: I9de6ee0ccfe5d50eba1e608e7d2725e1a41d9a14
This commit is contained in:
Maxim Cournoyer 2025-03-03 11:19:16 +09:00
parent 7b33214d80
commit 84a351b3de
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -595,29 +595,6 @@ server and embedded PowerPC, and S390 guests.")
(supported-systems (fold delete %supported-systems
'("mips64el-linux" "i586-gnu" "x86_64-gnu")))))
;; QEMU >= 8.1.0's riscv64 binfmt service is unreliable.
(define-public qemu-7.2.4
(package
(inherit qemu)
(name "qemu")
(version "7.2.4")
(source
(origin
(method url-fetch)
(uri (string-append "https://download.qemu.org/qemu-"
version ".tar.xz"))
(sha256
(base32 "0795l8xsy67fnh4mbdz40jm880iisd7q6d7ly6nfzpac3gjr8zyf"))
(patches (search-patches "qemu-7.2.4-build-info-manual.patch"
"qemu-disable-aarch64-migration-test.patch"
"qemu-fix-agent-paths.patch"))
(modules (origin-modules (package-source qemu)))
(snippet (origin-snippet (package-source qemu)))))
(arguments
(substitute-keyword-arguments (package-arguments qemu)
((#:tests? tests #f) ;migration tests still fail
#f)))))
(define-public qemu-minimal
;; QEMU without GUI support, only supporting the host's architecture
(package/inherit qemu