2016-08-31 12:25:47 +01:00
|
|
|
|
{ stdenv, fetchurl, fetchpatch, python, zlib, pkgconfig, glib
|
|
|
|
|
, ncurses, perl, pixman, vde2, alsaLib, texinfo, libuuid, flex
|
|
|
|
|
, bison, lzo, snappy, libaio, gnutls, nettle
|
2015-06-01 19:55:53 +01:00
|
|
|
|
, makeWrapper
|
2016-02-29 00:22:06 +00:00
|
|
|
|
, attr, libcap, libcap_ng
|
|
|
|
|
, CoreServices, Cocoa, rez, setfile
|
|
|
|
|
, numaSupport ? stdenv.isLinux, numactl
|
|
|
|
|
, seccompSupport ? stdenv.isLinux, libseccomp
|
|
|
|
|
, pulseSupport ? !stdenv.isDarwin, libpulseaudio
|
|
|
|
|
, sdlSupport ? !stdenv.isDarwin, SDL
|
2015-06-01 19:55:53 +01:00
|
|
|
|
, vncSupport ? true, libjpeg, libpng
|
2016-02-29 00:22:06 +00:00
|
|
|
|
, spiceSupport ? !stdenv.isDarwin, spice, spice_protocol, usbredir
|
2015-06-01 19:55:53 +01:00
|
|
|
|
, x86Only ? false
|
2013-07-04 16:44:44 +01:00
|
|
|
|
}:
|
2013-02-08 01:44:02 +00:00
|
|
|
|
|
2014-08-28 19:21:23 +01:00
|
|
|
|
with stdenv.lib;
|
|
|
|
|
let
|
2016-08-31 12:31:02 +01:00
|
|
|
|
version = "2.6.1";
|
2015-06-01 19:55:53 +01:00
|
|
|
|
audio = optionalString (hasSuffix "linux" stdenv.system) "alsa,"
|
|
|
|
|
+ optionalString pulseSupport "pa,"
|
|
|
|
|
+ optionalString sdlSupport "sdl,";
|
2014-08-28 19:21:23 +01:00
|
|
|
|
in
|
2013-07-31 13:50:42 +01:00
|
|
|
|
|
2013-02-08 01:44:02 +00:00
|
|
|
|
stdenv.mkDerivation rec {
|
2015-09-17 11:44:17 +01:00
|
|
|
|
name = "qemu-" + stdenv.lib.optionalString x86Only "x86-only-" + version;
|
2013-02-08 01:44:02 +00:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
2015-09-17 11:44:17 +01:00
|
|
|
|
url = "http://wiki.qemu.org/download/qemu-${version}.tar.bz2";
|
2016-08-31 12:31:02 +01:00
|
|
|
|
sha256 = "1l88iqk0swqccrnjwczgl9arqsvy77bis862zxajy7z3dqdzshj9";
|
2013-02-08 01:44:02 +00:00
|
|
|
|
};
|
|
|
|
|
|
2015-06-01 19:55:53 +01:00
|
|
|
|
buildInputs =
|
2016-02-29 00:22:06 +00:00
|
|
|
|
[ python zlib pkgconfig glib ncurses perl pixman
|
|
|
|
|
vde2 texinfo libuuid flex bison makeWrapper lzo snappy
|
|
|
|
|
gnutls nettle
|
2015-06-01 19:55:53 +01:00
|
|
|
|
]
|
2016-02-29 00:22:06 +00:00
|
|
|
|
++ optionals stdenv.isDarwin [ CoreServices Cocoa rez setfile ]
|
|
|
|
|
++ optionals seccompSupport [ libseccomp ]
|
|
|
|
|
++ optionals numaSupport [ numactl ]
|
2015-06-01 19:55:53 +01:00
|
|
|
|
++ optionals pulseSupport [ libpulseaudio ]
|
|
|
|
|
++ optionals sdlSupport [ SDL ]
|
|
|
|
|
++ optionals vncSupport [ libjpeg libpng ]
|
|
|
|
|
++ optionals spiceSupport [ spice_protocol spice usbredir ]
|
2016-02-29 00:22:06 +00:00
|
|
|
|
++ optionals stdenv.isLinux [ alsaLib libaio libcap_ng libcap attr ];
|
2013-02-08 01:44:02 +00:00
|
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
2016-08-31 12:25:47 +01:00
|
|
|
|
patches = [
|
|
|
|
|
./no-etc-install.patch
|
|
|
|
|
(fetchpatch {
|
|
|
|
|
url = "http://git.qemu.org/?p=qemu.git;a=patch;h=fff39a7ad09da07ef490de05c92c91f22f8002f2";
|
|
|
|
|
name = "9pfs-forbid-illegal-path-names.patch";
|
|
|
|
|
sha256 = "081j85p6m7s1cfh3aq1i2av2fsiarlri9gs939s0wvc6pdyb4b70";
|
|
|
|
|
})
|
|
|
|
|
(fetchpatch {
|
|
|
|
|
url = "http://git.qemu.org/?p=qemu.git;a=patch;h=805b5d98c649d26fc44d2d7755a97f18e62b438a";
|
|
|
|
|
name = "9pfs-forbid-.-and-..-in-file-names.patch";
|
|
|
|
|
sha256 = "0km6knll492dx745gx37bi6dhmz08cmjiyf479ajkykp0aljii24";
|
|
|
|
|
})
|
|
|
|
|
(fetchpatch {
|
|
|
|
|
url = "http://git.qemu.org/?p=qemu.git;a=patch;h=56f101ecce0eafd09e2daf1c4eeb1377d6959261";
|
|
|
|
|
name = "9pfs-directory-traversal-CVE-2016-7116.patch";
|
|
|
|
|
sha256 = "06pr070qj19w5mjxr36bcqxmgpiczncigqsbwfc8ncjhm1h7dmry";
|
|
|
|
|
})
|
|
|
|
|
];
|
2015-06-01 19:55:53 +01:00
|
|
|
|
|
|
|
|
|
configureFlags =
|
2016-02-29 00:22:06 +00:00
|
|
|
|
[ "--smbd=smbd" # use `smbd' from $PATH
|
2015-06-01 19:55:53 +01:00
|
|
|
|
"--audio-drv-list=${audio}"
|
|
|
|
|
"--sysconfdir=/etc"
|
|
|
|
|
"--localstatedir=/var"
|
|
|
|
|
]
|
2016-02-29 00:22:06 +00:00
|
|
|
|
++ optional numaSupport "--enable-numa"
|
|
|
|
|
++ optional seccompSupport "--enable-seccomp"
|
2015-06-01 19:55:53 +01:00
|
|
|
|
++ optional spiceSupport "--enable-spice"
|
|
|
|
|
++ optional x86Only "--target-list=i386-softmmu,x86_64-softmmu"
|
2016-02-29 00:22:06 +00:00
|
|
|
|
++ optional stdenv.isDarwin "--enable-cocoa"
|
|
|
|
|
++ optional stdenv.isLinux "--enable-linux-aio";
|
2015-06-01 19:55:53 +01:00
|
|
|
|
|
2016-04-08 00:45:53 +01:00
|
|
|
|
postFixup =
|
|
|
|
|
''
|
|
|
|
|
for exe in $out/bin/qemu-system-* ; do
|
|
|
|
|
paxmark m $exe
|
|
|
|
|
done
|
|
|
|
|
'';
|
|
|
|
|
|
2015-06-01 19:55:53 +01: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 "\$([ -e /dev/kvm ] && echo -enable-kvm)"
|
|
|
|
|
fi
|
|
|
|
|
'';
|
2013-07-31 13:31:04 +01:00
|
|
|
|
|
2014-02-20 20:02:55 +00:00
|
|
|
|
meta = with stdenv.lib; {
|
2013-07-04 15:52:43 +01:00
|
|
|
|
homepage = http://www.qemu.org/;
|
|
|
|
|
description = "A generic and open source machine emulator and virtualizer";
|
2014-02-20 20:02:55 +00:00
|
|
|
|
license = licenses.gpl2Plus;
|
2015-07-01 13:11:05 +01:00
|
|
|
|
maintainers = with maintainers; [ viric eelco ];
|
2016-02-29 00:22:06 +00:00
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2013-02-08 01:44:02 +00:00
|
|
|
|
};
|
|
|
|
|
}
|