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
|
2019-02-12 21:52:28 +00:00
|
|
|
|
, CoreServices, Cocoa, Hypervisor, rez, setfile
|
treewide: isArm -> isAarch32
Following legacy packing conventions, `isArm` was defined just for
32-bit ARM instruction set. This is confusing to non packagers though,
because Aarch64 is an ARM instruction set.
The official ARM overview for ARMv8[1] is surprisingly not confusing,
given the overall state of affairs for ARM naming conventions, and
offers us a solution. It divides the nomenclature into three levels:
```
ISA: ARMv8 {-A, -R, -M}
/ \
Mode: Aarch32 Aarch64
| / \
Encoding: A64 A32 T32
```
At the top is the overall v8 instruction set archicture. Second are the
two modes, defined by bitwidth but differing in other semantics too, and
buttom are the encodings, (hopefully?) isomorphic if they encode the
same mode.
The 32 bit encodings are mostly backwards compatible with previous
non-Thumb and Thumb encodings, and if so we can pun the mode names to
instead mean "sets of compatable or isomorphic encodings", and then
voilà we have nice names for 32-bit and 64-bit arm instruction sets
which do not use the word ARM so as to not confused either laymen or
experienced ARM packages.
[1]: https://developer.arm.com/products/architecture/a-profile
2018-03-20 02:41:06 +00:00
|
|
|
|
, numaSupport ? stdenv.isLinux && !stdenv.isAarch32, 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-12-25 23:15:46 +00:00
|
|
|
|
, gtkSupport ? !stdenv.isDarwin && !xenSupport, gtk3, gettext, vte
|
2015-06-01 19:55:53 +01:00
|
|
|
|
, vncSupport ? true, libjpeg, libpng
|
2018-10-12 19:58:49 +01:00
|
|
|
|
, smartcardSupport ? true, libcacard
|
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
|
2019-02-06 18:53:23 +00:00
|
|
|
|
, cephSupport ? false, ceph
|
2018-03-25 22:33:23 +01:00
|
|
|
|
, openGLSupport ? sdlSupport, mesa_noglu, epoxy, libdrm
|
|
|
|
|
, virglSupport ? openGLSupport, virglrenderer
|
2018-06-10 23:18:31 +01:00
|
|
|
|
, smbdSupport ? false, samba
|
2017-11-24 12:34:04 +00:00
|
|
|
|
, hostCpuOnly ? false
|
2018-11-13 22:54:08 +00:00
|
|
|
|
, hostCpuTargets ? (if hostCpuOnly
|
|
|
|
|
then (stdenv.lib.optional stdenv.isx86_64 "i386-softmmu"
|
|
|
|
|
++ ["${stdenv.hostPlatform.qemuArch}-softmmu"])
|
|
|
|
|
else null)
|
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-08-20 20:11:29 +01:00
|
|
|
|
audio = optionalString (hasSuffix "linux" stdenv.hostPlatform.system) "alsa,"
|
2015-06-01 19:55:53 +01:00
|
|
|
|
+ optionalString pulseSupport "pa,"
|
|
|
|
|
+ optionalString sdlSupport "sdl,";
|
2017-11-24 12:34:04 +00:00
|
|
|
|
|
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 {
|
2018-12-15 00:22:08 +00:00
|
|
|
|
version = "3.1.0";
|
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 {
|
2018-07-18 15:28:48 +01:00
|
|
|
|
url = "https://wiki.qemu.org/download/qemu-${version}.tar.bz2";
|
2018-12-15 00:22:08 +00:00
|
|
|
|
sha256 = "08frr1fdjx8qcfh3fafn10kibdwbvkqqvfl7hpqbm7i9dg4f1zlq";
|
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
|
|
|
|
]
|
2019-02-12 21:52:28 +00:00
|
|
|
|
++ optionals stdenv.isDarwin [ CoreServices Cocoa Hypervisor rez setfile ]
|
2016-02-29 00:22:06 +00:00
|
|
|
|
++ 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-12-25 23:15:46 +00:00
|
|
|
|
++ optionals gtkSupport [ gtk3 gettext vte ]
|
2015-06-01 19:55:53 +01:00
|
|
|
|
++ optionals vncSupport [ libjpeg libpng ]
|
2018-10-12 19:58:49 +01:00
|
|
|
|
++ optionals smartcardSupport [ libcacard ]
|
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 ]
|
2019-02-06 18:53:23 +00:00
|
|
|
|
++ optionals cephSupport [ ceph ]
|
2018-03-17 16:14:52 +00:00
|
|
|
|
++ optionals openGLSupport [ mesa_noglu epoxy libdrm ]
|
2018-06-10 23:18:31 +01:00
|
|
|
|
++ optionals virglSupport [ virglrenderer ]
|
|
|
|
|
++ optionals smbdSupport [ samba ];
|
2013-02-08 01:44:02 +00:00
|
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
2018-04-20 10:05:50 +01:00
|
|
|
|
outputs = [ "out" "ga" ];
|
|
|
|
|
|
2018-08-10 19:59:53 +01:00
|
|
|
|
patches = [
|
|
|
|
|
./no-etc-install.patch
|
|
|
|
|
./fix-qemu-ga.patch
|
2019-03-14 13:56:55 +00:00
|
|
|
|
./9p-ignore-noatime.patch
|
2019-03-20 10:15:41 +00:00
|
|
|
|
(fetchpatch {
|
|
|
|
|
name = "CVE-2019-3812.patch";
|
|
|
|
|
url = "https://git.qemu.org/?p=qemu.git;a=patch;h=b05b267840515730dbf6753495d5b7bd8b04ad1c";
|
|
|
|
|
sha256 = "03a5vc5wvirbyi5r8kb2r4m2w6f1zmh9bqsr2psh4pblwar0nf55";
|
|
|
|
|
})
|
2018-08-10 19:59:53 +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";
|
|
|
|
|
})
|
2018-09-10 07:14:37 +01:00
|
|
|
|
./sigrtminmax.patch
|
2018-03-25 03:15:43 +01:00
|
|
|
|
(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
|
2018-04-26 13:27:23 +01:00
|
|
|
|
'' + optionalString stdenv.hostPlatform.isMusl ''
|
|
|
|
|
NIX_CFLAGS_COMPILE+=" -D_LINUX_SYSINFO_H"
|
2017-07-21 17:39:50 +01:00
|
|
|
|
'';
|
|
|
|
|
|
2015-06-01 19:55:53 +01:00
|
|
|
|
configureFlags =
|
2018-06-10 23:18:31 +01:00
|
|
|
|
[ "--audio-drv-list=${audio}"
|
2015-06-01 19:55:53 +01:00
|
|
|
|
"--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"
|
2018-10-12 19:58:49 +01:00
|
|
|
|
++ optional smartcardSupport "--enable-smartcard"
|
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"
|
2018-11-13 22:54:08 +00:00
|
|
|
|
++ optional (hostCpuTargets != null) "--target-list=${stdenv.lib.concatStringsSep "," hostCpuTargets}"
|
2016-02-29 00:22:06 +00:00
|
|
|
|
++ optional stdenv.isDarwin "--enable-cocoa"
|
2019-02-12 21:52:28 +00:00
|
|
|
|
++ optional stdenv.isDarwin "--enable-hvf"
|
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"
|
2019-02-06 18:53:23 +00:00
|
|
|
|
++ optional cephSupport "--enable-rbd"
|
2018-03-17 16:14:52 +00:00
|
|
|
|
++ optional openGLSupport "--enable-opengl"
|
2018-06-10 23:18:31 +01:00
|
|
|
|
++ optional virglSupport "--enable-virglrenderer"
|
|
|
|
|
++ optional smbdSupport "--smbd=${samba}/bin/smbd";
|
2015-06-01 19:55:53 +01:00
|
|
|
|
|
2018-04-25 04:20:18 +01:00
|
|
|
|
doCheck = false; # tries to access /dev
|
|
|
|
|
|
2016-04-08 00:45:53 +01:00
|
|
|
|
postFixup =
|
|
|
|
|
''
|
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.
|
2018-11-13 22:54:08 +00:00
|
|
|
|
postInstall = ''
|
|
|
|
|
if [ -x $out/bin/qemu-system-${stdenv.hostPlatform.qemuArch} ]; then
|
|
|
|
|
makeWrapper $out/bin/qemu-system-${stdenv.hostPlatform.qemuArch} \
|
|
|
|
|
$out/bin/qemu-kvm \
|
|
|
|
|
--add-flags "\$([ -e /dev/kvm ] && echo -enable-kvm)"
|
|
|
|
|
fi
|
|
|
|
|
'';
|
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;
|
2018-07-22 20:50:19 +01:00
|
|
|
|
maintainers = with maintainers; [ eelco ];
|
2016-02-29 00:22:06 +00:00
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2013-02-08 01:44:02 +00:00
|
|
|
|
};
|
|
|
|
|
}
|