7ee76ebd0c
1.6.0 breaks many VM builds because it gives incorrect RTC values to the guest. See http://hydra.nixos.org/eval/981543 http://hydra.nixos.org/eval/981440
54 lines
1.6 KiB
Nix
54 lines
1.6 KiB
Nix
{ stdenv, fetchurl, python, zlib, pkgconfig, glib, ncurses, perl, pixman
|
||
, attr, libcap, vde2, alsaLib, texinfo, libuuid
|
||
, makeWrapper
|
||
, sdlSupport ? true, SDL
|
||
, vncSupport ? true, libjpeg, libpng
|
||
, spiceSupport ? true, spice, spice_protocol
|
||
, x86Only ? false
|
||
}:
|
||
|
||
let n = "qemu-1.5.2"; in
|
||
|
||
stdenv.mkDerivation rec {
|
||
name = n + (if x86Only then "-x86-only" else "");
|
||
|
||
src = fetchurl {
|
||
url = "http://wiki.qemu.org/download/${n}.tar.bz2";
|
||
sha256 = "0l52jwlxmwp9g3jpq0g7ix9dq4qgh46nd2h58lh47f0a35yi8qgn";
|
||
};
|
||
|
||
buildInputs =
|
||
[ python zlib pkgconfig glib ncurses perl pixman attr libcap
|
||
vde2 alsaLib texinfo libuuid makeWrapper
|
||
]
|
||
++ stdenv.lib.optionals sdlSupport [ SDL ]
|
||
++ stdenv.lib.optionals vncSupport [ libjpeg libpng ]
|
||
++ stdenv.lib.optionals spiceSupport [ spice_protocol spice ];
|
||
|
||
enableParallelBuilding = true;
|
||
|
||
configureFlags =
|
||
[ "--audio-drv-list=alsa"
|
||
"--smbd=smbd" # use `smbd' from $PATH
|
||
]
|
||
++ stdenv.lib.optional spiceSupport "--enable-spice"
|
||
++ stdenv.lib.optional x86Only "--target-list=i386-softmmu,x86_64-softmmu";
|
||
|
||
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
|
||
'';
|
||
|
||
meta = {
|
||
homepage = http://www.qemu.org/;
|
||
description = "A generic and open source machine emulator and virtualizer";
|
||
license = "GPLv2+";
|
||
maintainers = with stdenv.lib.maintainers; [ viric shlevy eelco ];
|
||
platforms = stdenv.lib.platforms.linux;
|
||
};
|
||
}
|