2016-11-14 15:35:11 +00:00
|
|
|
|
{ stdenv, fetchurl, fetchpatch, python2, zlib, pkgconfig, glib
|
2017-01-25 14:33:23 +00:00
|
|
|
|
, ncurses, perl, pixman, vde2, alsaLib, texinfo, flex
|
2016-11-23 12:01:32 +00:00
|
|
|
|
, bison, lzo, snappy, libaio, gnutls, nettle, curl
|
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
|
2017-11-22 17:37:30 +00:00
|
|
|
|
, numaSupport ? stdenv.isLinux && !stdenv.isArm, numactl
|
2016-02-29 00:22:06 +00:00
|
|
|
|
, seccompSupport ? stdenv.isLinux, libseccomp
|
|
|
|
|
, pulseSupport ? !stdenv.isDarwin, libpulseaudio
|
2018-03-18 02:26:38 +00:00
|
|
|
|
, sdlSupport ? !stdenv.isDarwin, SDL2
|
2018-04-23 23:19:34 +01:00
|
|
|
|
, gtkSupport ? !stdenv.isDarwin && !xenSupport, gtk3, gettext, gnome3
|
2015-06-01 19:55:53 +01:00
|
|
|
|
, vncSupport ? true, libjpeg, libpng
|
2018-02-25 02:23:58 +00:00
|
|
|
|
, spiceSupport ? !stdenv.isDarwin, spice, spice-protocol
|
2016-09-05 19:37:03 +01:00
|
|
|
|
, usbredirSupport ? spiceSupport, usbredir
|
2016-11-02 16:06:48 +00:00
|
|
|
|
, xenSupport ? false, xen
|
2018-03-25 22:33:23 +01:00
|
|
|
|
, openGLSupport ? sdlSupport, mesa_noglu, epoxy, libdrm
|
|
|
|
|
, virglSupport ? openGLSupport, virglrenderer
|
2017-11-24 12:34:04 +00:00
|
|
|
|
, hostCpuOnly ? false
|
2016-11-17 16:06:17 +00:00
|
|
|
|
, nixosTestRunner ? 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
|
2018-02-18 00:32:13 +00:00
|
|
|
|
version = "2.11.1";
|
|
|
|
|
sha256 = "1jrcff0szyjxc3vywyiclwdzk0xgq4cxvjbvmcfyjcpdrq9j5pyr";
|
2015-06-01 19:55:53 +01:00
|
|
|
|
audio = optionalString (hasSuffix "linux" stdenv.system) "alsa,"
|
|
|
|
|
+ optionalString pulseSupport "pa,"
|
|
|
|
|
+ optionalString sdlSupport "sdl,";
|
2017-11-24 12:34:04 +00:00
|
|
|
|
|
2017-12-06 18:06:33 +00:00
|
|
|
|
hostCpuTargets = if stdenv.isx86_64 then "i386-softmmu,x86_64-softmmu"
|
|
|
|
|
else if stdenv.isi686 then "i386-softmmu"
|
|
|
|
|
else if stdenv.isArm then "arm-softmmu"
|
|
|
|
|
else if stdenv.isAarch64 then "aarch64-softmmu"
|
|
|
|
|
else throw "Don't know how to build a 'hostCpuOnly = true' QEMU";
|
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 {
|
2017-01-25 14:33:23 +00:00
|
|
|
|
name = "qemu-"
|
2016-11-02 16:06:48 +00:00
|
|
|
|
+ stdenv.lib.optionalString xenSupport "xen-"
|
2017-11-24 12:34:04 +00:00
|
|
|
|
+ stdenv.lib.optionalString hostCpuOnly "host-cpu-only-"
|
2016-12-15 12:40:33 +00:00
|
|
|
|
+ stdenv.lib.optionalString nixosTestRunner "for-vm-tests-"
|
|
|
|
|
+ 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";
|
2017-10-24 17:15:12 +01:00
|
|
|
|
inherit sha256;
|
2013-02-08 01:44:02 +00:00
|
|
|
|
};
|
|
|
|
|
|
2015-06-01 19:55:53 +01:00
|
|
|
|
buildInputs =
|
2016-11-14 15:35:11 +00:00
|
|
|
|
[ python2 zlib pkgconfig glib ncurses perl pixman
|
2017-01-25 14:33:23 +00:00
|
|
|
|
vde2 texinfo flex bison makeWrapper lzo snappy
|
2016-11-23 12:01:32 +00:00
|
|
|
|
gnutls nettle curl
|
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 ]
|
2018-03-18 02:26:38 +00:00
|
|
|
|
++ optionals sdlSupport [ SDL2 ]
|
2018-04-14 01:33:25 +01:00
|
|
|
|
++ optionals gtkSupport [ gtk3 gettext gnome3.vte ]
|
2015-06-01 19:55:53 +01:00
|
|
|
|
++ optionals vncSupport [ libjpeg libpng ]
|
2018-02-25 02:23:58 +00:00
|
|
|
|
++ optionals spiceSupport [ spice-protocol spice ]
|
2016-09-05 19:37:03 +01:00
|
|
|
|
++ optionals usbredirSupport [ usbredir ]
|
2016-11-02 16:06:48 +00:00
|
|
|
|
++ optionals stdenv.isLinux [ alsaLib libaio libcap_ng libcap attr ]
|
2018-03-18 02:27:01 +00:00
|
|
|
|
++ optionals xenSupport [ xen ]
|
2018-03-17 16:14:52 +00:00
|
|
|
|
++ optionals openGLSupport [ mesa_noglu epoxy libdrm ]
|
|
|
|
|
++ optionals virglSupport [ virglrenderer ];
|
2013-02-08 01:44:02 +00:00
|
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
2018-04-20 10:05:50 +01:00
|
|
|
|
outputs = [ "out" "ga" ];
|
|
|
|
|
|
2018-03-07 15:42:10 +00:00
|
|
|
|
patches = [ ./no-etc-install.patch ./statfs-flags.patch (fetchpatch {
|
|
|
|
|
name = "glibc-2.27-memfd.patch";
|
|
|
|
|
url = "https://git.qemu.org/?p=qemu.git;a=patch;h=75e5b70e6b5dcc4f2219992d7cffa462aa406af0";
|
|
|
|
|
sha256 = "0gaz93kb33qc0jx6iphvny0yrd17i8zhcl3a9ky5ylc2idz0wiwa";
|
|
|
|
|
}) ]
|
2017-08-07 04:19:32 +01:00
|
|
|
|
++ optional nixosTestRunner ./force-uid0-on-9p.patch
|
2018-03-25 03:15:43 +01:00
|
|
|
|
++ optional pulseSupport ./fix-hda-recording.patch
|
|
|
|
|
++ optionals stdenv.hostPlatform.isMusl [
|
|
|
|
|
(fetchpatch {
|
|
|
|
|
url = https://raw.githubusercontent.com/alpinelinux/aports/2bb133986e8fa90e2e76d53369f03861a87a74ef/main/qemu/xattr_size_max.patch;
|
|
|
|
|
sha256 = "1xfdjs1jlvs99hpf670yianb8c3qz2ars8syzyz8f2c2cp5y4bxb";
|
|
|
|
|
})
|
|
|
|
|
(fetchpatch {
|
|
|
|
|
url = https://raw.githubusercontent.com/alpinelinux/aports/2bb133986e8fa90e2e76d53369f03861a87a74ef/main/qemu/musl-F_SHLCK-and-F_EXLCK.patch;
|
|
|
|
|
sha256 = "1gm67v41gw6apzgz7jr3zv9z80wvkv0jaxd2w4d16hmipa8bhs0k";
|
|
|
|
|
})
|
|
|
|
|
(fetchpatch {
|
|
|
|
|
url = https://raw.githubusercontent.com/alpinelinux/aports/61a7a1b77a868e3b940c0b25e6c2b2a6c32caf20/main/qemu/0006-linux-user-signal.c-define-__SIGRTMIN-MAX-for-non-GN.patch;
|
|
|
|
|
sha256 = "1ar6r1vpmhnbs72v6mhgyahcjcf7b9b4xi7asx17sy68m171d2g6";
|
|
|
|
|
})
|
|
|
|
|
(fetchpatch {
|
|
|
|
|
url = https://raw.githubusercontent.com/alpinelinux/aports/2bb133986e8fa90e2e76d53369f03861a87a74ef/main/qemu/fix-sigevent-and-sigval_t.patch;
|
|
|
|
|
sha256 = "0wk0rrcqywhrw9hygy6ap0lfg314m9z1wr2hn8338r5gfcw75mav";
|
|
|
|
|
})
|
|
|
|
|
];
|
2017-02-22 08:06:49 +00:00
|
|
|
|
|
2016-09-25 20:40:47 +01:00
|
|
|
|
hardeningDisable = [ "stackprotector" ];
|
2015-06-01 19:55:53 +01:00
|
|
|
|
|
2017-07-21 17:39:50 +01:00
|
|
|
|
preConfigure = ''
|
|
|
|
|
unset CPP # intereferes with dependency calculation
|
|
|
|
|
'';
|
|
|
|
|
|
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"
|
|
|
|
|
]
|
2018-04-23 23:19:34 +01:00
|
|
|
|
# disable sysctl check on darwin.
|
|
|
|
|
++ optional stdenv.isDarwin "--cpu=x86_64"
|
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"
|
2016-09-05 19:37:03 +01:00
|
|
|
|
++ optional usbredirSupport "--enable-usb-redir"
|
2017-11-24 12:34:04 +00:00
|
|
|
|
++ optional hostCpuOnly "--target-list=${hostCpuTargets}"
|
2016-02-29 00:22:06 +00:00
|
|
|
|
++ optional stdenv.isDarwin "--enable-cocoa"
|
2016-11-02 16:06:48 +00:00
|
|
|
|
++ optional stdenv.isLinux "--enable-linux-aio"
|
2018-04-14 01:33:25 +01:00
|
|
|
|
++ optional gtkSupport "--enable-gtk"
|
2018-03-18 02:27:01 +00:00
|
|
|
|
++ optional xenSupport "--enable-xen"
|
2018-03-17 16:14:52 +00:00
|
|
|
|
++ optional openGLSupport "--enable-opengl"
|
|
|
|
|
++ optional virglSupport "--enable-virglrenderer";
|
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
|
2018-04-20 10:05:50 +01:00
|
|
|
|
# copy qemu-ga (guest agent) to separate output
|
|
|
|
|
mkdir -p $ga/bin
|
|
|
|
|
cp $out/bin/qemu-ga $ga/bin/
|
2016-04-08 00:45:53 +01:00
|
|
|
|
'';
|
|
|
|
|
|
2017-12-06 18:06:33 +00:00
|
|
|
|
# Add a ‘qemu-kvm’ wrapper for compatibility/convenience.
|
2015-06-01 19:55:53 +01:00
|
|
|
|
postInstall =
|
2017-12-06 18:06:33 +00:00
|
|
|
|
if stdenv.isx86_64 then ''makeWrapper $out/bin/qemu-system-x86_64 $out/bin/qemu-kvm --add-flags "\$([ -e /dev/kvm ] && echo -enable-kvm)"''
|
|
|
|
|
else if stdenv.isi686 then ''makeWrapper $out/bin/qemu-system-i386 $out/bin/qemu-kvm --add-flags "\$([ -e /dev/kvm ] && echo -enable-kvm)"''
|
|
|
|
|
else if stdenv.isArm then ''makeWrapper $out/bin/qemu-system-arm $out/bin/qemu-kvm --add-flags "\$([ -e /dev/kvm ] && echo -enable-kvm)"''
|
|
|
|
|
else if stdenv.isAarch64 then ''makeWrapper $out/bin/qemu-system-aarch64 $out/bin/qemu-kvm --add-flags "\$([ -e /dev/kvm ] && echo -enable-kvm)"''
|
|
|
|
|
else "";
|
2013-07-31 13:31:04 +01:00
|
|
|
|
|
2017-12-07 21:26:42 +00:00
|
|
|
|
passthru = {
|
|
|
|
|
qemu-system-i386 = "bin/qemu-system-i386";
|
|
|
|
|
};
|
|
|
|
|
|
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
|
|
|
|
};
|
|
|
|
|
}
|