2013-07-04 17:44:44 +02:00
|
|
|
|
{ stdenv, fetchurl, python, zlib, pkgconfig, glib, ncurses, perl, pixman
|
2014-02-20 21:02:55 +01:00
|
|
|
|
, attr, libcap, vde2, alsaLib, texinfo, libuuid, flex, bison
|
2013-07-31 14:31:04 +02:00
|
|
|
|
, makeWrapper
|
2013-07-04 17:44:44 +02:00
|
|
|
|
, sdlSupport ? true, SDL
|
|
|
|
|
, vncSupport ? true, libjpeg, libpng
|
virt-manager: update to 1.0.1, fix & update dependencies, gtk3 support
- Vte, add gtk3 support, enable introspection, update to 0.35.90
- Spice-gtk, add gtk3 support
- gtk-vnc, add gtk3 support
- Add libvirt-glib (thanks @bjornfor)
- Add usbredir
- qemu, enable usbredir
- spice-gtk, enable usbredir
- virt-manager, update to 1.0.1
[Bjørn:
* Set namePrefix = "" to preserve package name "virt-manager"
(instead of "python2.7-virt-manager")
* Add dconf to GIO_EXTRA_MODULES to get persistent settings in
virt-manager. Without it:
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications.
* Add ${gtk3}/share to XDG_DATA_DIRS to unbreak "Take Screenshot"
feature (fixes "Settings schema 'org.gtk.Settings.FileChooser' is not installed")
* gtk-vnc: don't pull "pkgs" attrset for optionalString, use stdenv.lib.optionalString instead.
]
2014-03-23 18:12:07 +01:00
|
|
|
|
, spiceSupport ? true, spice, spice_protocol, usbredir
|
2013-07-04 18:01:11 +02:00
|
|
|
|
, x86Only ? false
|
2013-07-04 17:44:44 +02:00
|
|
|
|
}:
|
2013-02-08 02:44:02 +01:00
|
|
|
|
|
2014-04-17 15:54:42 +02:00
|
|
|
|
let n = "qemu-1.7.1"; in
|
2013-07-31 14:50:42 +02:00
|
|
|
|
|
2013-02-08 02:44:02 +01:00
|
|
|
|
stdenv.mkDerivation rec {
|
2013-07-31 14:50:42 +02:00
|
|
|
|
name = n + (if x86Only then "-x86-only" else "");
|
2013-02-08 02:44:02 +01:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
2013-07-31 14:50:42 +02:00
|
|
|
|
url = "http://wiki.qemu.org/download/${n}.tar.bz2";
|
2014-04-17 15:54:42 +02:00
|
|
|
|
sha256 = "1x5y06zhp0gc97g1sb98vf7dkawg63xywv0mbnpfnbi20jh452fn";
|
2013-02-08 02:44:02 +01:00
|
|
|
|
};
|
|
|
|
|
|
2014-04-28 14:37:46 +02:00
|
|
|
|
patches = [ ./cve-2014-0150.patch ./cve-2014-2894.patch ];
|
|
|
|
|
|
2013-07-04 17:44:44 +02:00
|
|
|
|
buildInputs =
|
|
|
|
|
[ python zlib pkgconfig glib ncurses perl pixman attr libcap
|
2014-02-20 21:02:55 +01:00
|
|
|
|
vde2 alsaLib texinfo libuuid flex bison makeWrapper
|
2013-07-04 17:44:44 +02:00
|
|
|
|
]
|
|
|
|
|
++ stdenv.lib.optionals sdlSupport [ SDL ]
|
|
|
|
|
++ stdenv.lib.optionals vncSupport [ libjpeg libpng ]
|
virt-manager: update to 1.0.1, fix & update dependencies, gtk3 support
- Vte, add gtk3 support, enable introspection, update to 0.35.90
- Spice-gtk, add gtk3 support
- gtk-vnc, add gtk3 support
- Add libvirt-glib (thanks @bjornfor)
- Add usbredir
- qemu, enable usbredir
- spice-gtk, enable usbredir
- virt-manager, update to 1.0.1
[Bjørn:
* Set namePrefix = "" to preserve package name "virt-manager"
(instead of "python2.7-virt-manager")
* Add dconf to GIO_EXTRA_MODULES to get persistent settings in
virt-manager. Without it:
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications.
* Add ${gtk3}/share to XDG_DATA_DIRS to unbreak "Take Screenshot"
feature (fixes "Settings schema 'org.gtk.Settings.FileChooser' is not installed")
* gtk-vnc: don't pull "pkgs" attrset for optionalString, use stdenv.lib.optionalString instead.
]
2014-03-23 18:12:07 +01:00
|
|
|
|
++ stdenv.lib.optionals spiceSupport [ spice_protocol spice usbredir ];
|
2013-02-08 02:44:02 +01:00
|
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
2013-07-04 17:44:44 +02:00
|
|
|
|
configureFlags =
|
|
|
|
|
[ "--audio-drv-list=alsa"
|
2013-07-04 17:45:37 +02:00
|
|
|
|
"--smbd=smbd" # use `smbd' from $PATH
|
2013-07-04 17:44:44 +02:00
|
|
|
|
]
|
2013-07-04 18:01:11 +02:00
|
|
|
|
++ stdenv.lib.optional spiceSupport "--enable-spice"
|
|
|
|
|
++ stdenv.lib.optional x86Only "--target-list=i386-softmmu,x86_64-softmmu";
|
2013-06-25 10:03:00 +02:00
|
|
|
|
|
2013-07-31 14:31:04 +02:00
|
|
|
|
postInstall =
|
|
|
|
|
''
|
|
|
|
|
# Add a ‘qemu-kvm’ wrapper for compatibility/convenience.
|
|
|
|
|
p="$out/bin/qemu-system-${if stdenv.system == "x86_64-linux" then "x86_64" else "i386"}"
|
|
|
|
|
if [ -e "$p" ]; then
|
|
|
|
|
makeWrapper "$p" $out/bin/qemu-kvm --add-flags "-enable-kvm"
|
|
|
|
|
fi
|
|
|
|
|
'';
|
|
|
|
|
|
2014-02-20 21:02:55 +01:00
|
|
|
|
meta = with stdenv.lib; {
|
2013-07-04 16:52:43 +02:00
|
|
|
|
homepage = http://www.qemu.org/;
|
|
|
|
|
description = "A generic and open source machine emulator and virtualizer";
|
2014-02-20 21:02:55 +01:00
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
|
maintainers = with maintainers; [ viric shlevy eelco ];
|
|
|
|
|
platforms = platforms.linux;
|
2013-02-08 02:44:02 +01:00
|
|
|
|
};
|
|
|
|
|
}
|