gnu: qemu: Reorder inputs alphabetically.

* gnu/packages/qemu.scm (qemu): Reorder inputs alphabetically.
This commit is contained in:
David Craven 2016-07-30 10:34:14 +02:00
parent 8ff4dcbec4
commit 2f04282297
No known key found for this signature in database
GPG key ID: C5E051C79C0BECDB

View file

@ -118,29 +118,28 @@ (define-public qemu
(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 @@ (define-public qemu-minimal
;; 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")))))