gnu: qemu: Reorder inputs alphabetically.
* gnu/packages/qemu.scm (qemu): Reorder inputs alphabetically.
This commit is contained in:
parent
8ff4dcbec4
commit
2f04282297
|
@ -118,29 +118,28 @@
|
||||||
(string-append "# " all)))
|
(string-append "# " all)))
|
||||||
#t)))))
|
#t)))))
|
||||||
(inputs ; TODO: Add optional inputs.
|
(inputs ; TODO: Add optional inputs.
|
||||||
`(("sdl" ,sdl)
|
`(("alsa-lib" ,alsa-lib)
|
||||||
("mesa" ,mesa)
|
("attr" ,attr)
|
||||||
("libusb" ,libusb) ;USB pass-through support
|
|
||||||
|
|
||||||
;; ("libaio" ,libaio)
|
|
||||||
("glib" ,glib)
|
("glib" ,glib)
|
||||||
("ncurses" ,ncurses)
|
;; ("libaio" ,libaio)
|
||||||
("libpng" ,libpng)
|
|
||||||
("libjpeg" ,libjpeg-8)
|
|
||||||
("pixman" ,pixman)
|
|
||||||
;; ("vde2" ,vde2)
|
|
||||||
("util-linux" ,util-linux)
|
|
||||||
("libcap" ,libcap) ; virtfs support requires libcap & libattr
|
|
||||||
("libattr" ,attr)
|
("libattr" ,attr)
|
||||||
|
("libcap" ,libcap) ; virtfs support requires libcap & libattr
|
||||||
|
("libjpeg" ,libjpeg-8)
|
||||||
|
("libpng" ,libpng)
|
||||||
|
("libusb" ,libusb) ;USB pass-through support
|
||||||
|
("mesa" ,mesa)
|
||||||
|
("ncurses" ,ncurses)
|
||||||
;; ("pciutils" ,pciutils)
|
;; ("pciutils" ,pciutils)
|
||||||
("alsa-lib" ,alsa-lib)
|
("pixman" ,pixman)
|
||||||
("zlib" ,zlib)
|
("sdl" ,sdl)
|
||||||
("attr" ,attr)))
|
("util-linux" ,util-linux)
|
||||||
(native-inputs `(("pkg-config" ,pkg-config)
|
;; ("vde2" ,vde2)
|
||||||
|
("zlib" ,zlib)))
|
||||||
|
(native-inputs `(("glib:bin" ,glib "bin") ; gtester, etc.
|
||||||
|
("perl" ,perl)
|
||||||
|
("pkg-config" ,pkg-config)
|
||||||
("python" ,python-2) ; incompatible with Python 3 according to error message
|
("python" ,python-2) ; incompatible with Python 3 according to error message
|
||||||
("glib" ,glib "bin") ; gtester, etc.
|
("texinfo" ,texinfo)))
|
||||||
("texinfo" ,texinfo)
|
|
||||||
("perl" ,perl)))
|
|
||||||
(home-page "http://www.qemu-project.org")
|
(home-page "http://www.qemu-project.org")
|
||||||
(synopsis "Machine emulator and virtualizer")
|
(synopsis "Machine emulator and virtualizer")
|
||||||
(description
|
(description
|
||||||
|
@ -175,4 +174,4 @@ server and embedded PowerPC, and S390 guests.")
|
||||||
|
|
||||||
;; Remove dependencies on optional libraries, notably GUI libraries.
|
;; Remove dependencies on optional libraries, notably GUI libraries.
|
||||||
(inputs (fold alist-delete (package-inputs qemu)
|
(inputs (fold alist-delete (package-inputs qemu)
|
||||||
'("sdl" "mesa" "libusb")))))
|
'("libusb" "mesa" "sdl")))))
|
||||||
|
|
Loading…
Reference in New Issue