2023-02-09 13:18:40 +00:00
|
|
|
|
{ lib, stdenv, fetchurl, fetchpatch, python3Packages, zlib, pkg-config, glib, buildPackages
|
2021-06-10 02:57:09 +00:00
|
|
|
|
, perl, pixman, vde2, alsa-lib, texinfo, flex
|
2021-08-27 08:16:15 +00:00
|
|
|
|
, bison, lzo, snappy, libaio, libtasn1, gnutls, nettle, curl, ninja, meson, sigtool
|
2022-03-02 10:00:10 +00:00
|
|
|
|
, makeWrapper, runtimeShell, removeReferencesTo
|
2022-12-14 20:20:33 +00:00
|
|
|
|
, attr, libcap, libcap_ng, socat, libslirp
|
2022-10-12 02:45:41 +00:00
|
|
|
|
, CoreServices, Cocoa, Hypervisor, rez, setfile, vmnet
|
2022-03-22 13:21:21 +00:00
|
|
|
|
, guestAgentSupport ? with stdenv.hostPlatform; isLinux || isSunOS || isWindows
|
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
|
2021-01-11 07:54:33 +00:00
|
|
|
|
, alsaSupport ? lib.hasSuffix "linux" stdenv.hostPlatform.system && !nixosTestRunner
|
2020-10-05 13:36:37 +00:00
|
|
|
|
, pulseSupport ? !stdenv.isDarwin && !nixosTestRunner, libpulseaudio
|
2020-12-15 18:25:55 +00:00
|
|
|
|
, sdlSupport ? !stdenv.isDarwin && !nixosTestRunner, SDL2, SDL2_image
|
2021-12-18 20:42:57 +00:00
|
|
|
|
, jackSupport ? !stdenv.isDarwin && !nixosTestRunner, libjack2
|
2020-10-05 13:36:37 +00:00
|
|
|
|
, gtkSupport ? !stdenv.isDarwin && !xenSupport && !nixosTestRunner, gtk3, gettext, vte, wrapGAppsHook
|
|
|
|
|
, vncSupport ? !nixosTestRunner, libjpeg, libpng
|
|
|
|
|
, smartcardSupport ? !nixosTestRunner, libcacard
|
2022-10-28 09:32:17 +00:00
|
|
|
|
, spiceSupport ? true && !nixosTestRunner, spice, spice-protocol
|
2020-10-19 15:49:31 +00:00
|
|
|
|
, ncursesSupport ? !nixosTestRunner, ncurses
|
2016-09-05 18:37:03 +00: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
|
2021-05-05 20:05:21 +00:00
|
|
|
|
, glusterfsSupport ? false, glusterfs, libuuid
|
2021-11-11 04:35:34 +00:00
|
|
|
|
, openGLSupport ? sdlSupport, mesa, libepoxy, libdrm
|
2018-03-25 21:33:23 +00:00
|
|
|
|
, virglSupport ? openGLSupport, virglrenderer
|
2020-08-12 11:47:41 +00:00
|
|
|
|
, libiscsiSupport ? true, libiscsi
|
2018-06-10 22:18:31 +00:00
|
|
|
|
, smbdSupport ? false, samba
|
2020-07-11 20:33:40 +00:00
|
|
|
|
, tpmSupport ? true
|
2021-11-14 22:12:02 +00:00
|
|
|
|
, uringSupport ? stdenv.isLinux, liburing
|
2022-10-03 15:44:04 +00:00
|
|
|
|
, canokeySupport ? false, canokey-qemu
|
2017-11-24 12:34:04 +00:00
|
|
|
|
, hostCpuOnly ? false
|
2018-11-13 22:54:08 +00:00
|
|
|
|
, hostCpuTargets ? (if hostCpuOnly
|
2021-01-11 07:54:33 +00:00
|
|
|
|
then (lib.optional stdenv.isx86_64 "i386-softmmu"
|
2018-11-13 22:54:08 +00:00
|
|
|
|
++ ["${stdenv.hostPlatform.qemuArch}-softmmu"])
|
|
|
|
|
else null)
|
2016-11-17 16:06:17 +00:00
|
|
|
|
, nixosTestRunner ? false
|
2021-12-03 21:35:35 +00:00
|
|
|
|
, doCheck ? false
|
|
|
|
|
, qemu # for passthru.tests
|
2013-07-04 15:44:44 +00:00
|
|
|
|
}:
|
2013-02-08 01:44:02 +00:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-11-05 15:20:59 +00:00
|
|
|
|
pname = "qemu"
|
2021-01-15 05:42:41 +00:00
|
|
|
|
+ lib.optionalString xenSupport "-xen"
|
|
|
|
|
+ lib.optionalString hostCpuOnly "-host-cpu-only"
|
|
|
|
|
+ lib.optionalString nixosTestRunner "-for-vm-tests";
|
2022-12-14 20:20:33 +00:00
|
|
|
|
version = "7.2.0";
|
2013-02-08 01:44:02 +00:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
2022-07-29 20:33:25 +00:00
|
|
|
|
url = "https://download.qemu.org/qemu-${version}.tar.xz";
|
2022-12-14 20:20:33 +00:00
|
|
|
|
sha256 = "sha256-W0nOJod0Ta1JSukKiYxSIEo0BuhNBySCoeG+hU7rIVc=";
|
2013-02-08 01:44:02 +00:00
|
|
|
|
};
|
|
|
|
|
|
2021-11-28 09:40:29 +00:00
|
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
|
|
|
|
2023-02-09 13:18:40 +00:00
|
|
|
|
nativeBuildInputs = [
|
|
|
|
|
makeWrapper removeReferencesTo
|
|
|
|
|
pkg-config flex bison meson ninja perl
|
|
|
|
|
|
|
|
|
|
# Don't change this to python3 and python3.pkgs.*, breaks cross-compilation
|
|
|
|
|
python3Packages.python python3Packages.sphinx python3Packages.sphinx-rtd-theme
|
|
|
|
|
]
|
2021-08-04 18:54:48 +00:00
|
|
|
|
++ lib.optionals gtkSupport [ wrapGAppsHook ]
|
2021-08-27 08:16:15 +00:00
|
|
|
|
++ lib.optionals stdenv.isDarwin [ sigtool ];
|
2021-08-04 18:54:48 +00:00
|
|
|
|
|
|
|
|
|
buildInputs = [ zlib glib perl pixman
|
2021-08-27 08:16:15 +00:00
|
|
|
|
vde2 texinfo lzo snappy libtasn1
|
2022-12-14 20:20:33 +00:00
|
|
|
|
gnutls nettle curl libslirp
|
2021-08-04 18:54:48 +00:00
|
|
|
|
]
|
|
|
|
|
++ lib.optionals ncursesSupport [ ncurses ]
|
2022-10-12 02:45:41 +00:00
|
|
|
|
++ lib.optionals stdenv.isDarwin [ CoreServices Cocoa Hypervisor rez setfile vmnet ]
|
2021-08-04 18:54:48 +00:00
|
|
|
|
++ lib.optionals seccompSupport [ libseccomp ]
|
|
|
|
|
++ lib.optionals numaSupport [ numactl ]
|
2021-11-18 13:16:09 +00:00
|
|
|
|
++ lib.optionals alsaSupport [ alsa-lib ]
|
2021-08-04 18:54:48 +00:00
|
|
|
|
++ lib.optionals pulseSupport [ libpulseaudio ]
|
|
|
|
|
++ lib.optionals sdlSupport [ SDL2 SDL2_image ]
|
2021-12-18 20:42:57 +00:00
|
|
|
|
++ lib.optionals jackSupport [ libjack2 ]
|
2021-08-04 18:54:48 +00:00
|
|
|
|
++ lib.optionals gtkSupport [ gtk3 gettext vte ]
|
|
|
|
|
++ lib.optionals vncSupport [ libjpeg libpng ]
|
|
|
|
|
++ lib.optionals smartcardSupport [ libcacard ]
|
|
|
|
|
++ lib.optionals spiceSupport [ spice-protocol spice ]
|
|
|
|
|
++ lib.optionals usbredirSupport [ usbredir ]
|
2021-11-18 13:16:09 +00:00
|
|
|
|
++ lib.optionals stdenv.isLinux [ libaio libcap_ng libcap attr ]
|
2021-08-04 18:54:48 +00:00
|
|
|
|
++ lib.optionals xenSupport [ xen ]
|
|
|
|
|
++ lib.optionals cephSupport [ ceph ]
|
|
|
|
|
++ lib.optionals glusterfsSupport [ glusterfs libuuid ]
|
2021-11-11 04:35:34 +00:00
|
|
|
|
++ lib.optionals openGLSupport [ mesa libepoxy libdrm ]
|
2021-08-04 18:54:48 +00:00
|
|
|
|
++ lib.optionals virglSupport [ virglrenderer ]
|
|
|
|
|
++ lib.optionals libiscsiSupport [ libiscsi ]
|
2021-11-14 22:12:02 +00:00
|
|
|
|
++ lib.optionals smbdSupport [ samba ]
|
2022-10-03 15:44:04 +00:00
|
|
|
|
++ lib.optionals uringSupport [ liburing ]
|
|
|
|
|
++ lib.optionals canokeySupport [ canokey-qemu ];
|
2013-02-08 01:44:02 +00:00
|
|
|
|
|
2020-12-15 18:25:55 +00:00
|
|
|
|
dontUseMesonConfigure = true; # meson's configurePhase isn't compatible with qemu build
|
2013-02-08 01:44:02 +00:00
|
|
|
|
|
2022-03-22 13:21:21 +00:00
|
|
|
|
outputs = [ "out" ] ++ lib.optional guestAgentSupport "ga";
|
2021-12-26 11:45:05 +00:00
|
|
|
|
# On aarch64-linux we would shoot over the Hydra's 2G output limit.
|
|
|
|
|
separateDebugInfo = !(stdenv.isAarch64 && stdenv.isLinux);
|
2018-04-20 09:05:50 +00:00
|
|
|
|
|
2018-08-10 18:59:53 +00:00
|
|
|
|
patches = [
|
|
|
|
|
./fix-qemu-ga.patch
|
2022-03-22 13:21:21 +00:00
|
|
|
|
|
2022-02-28 16:14:16 +00:00
|
|
|
|
# QEMU upstream does not demand compatibility to pre-10.13, so 9p-darwin
|
|
|
|
|
# support on nix requires utimensat fallback. The patch adding this fallback
|
|
|
|
|
# set was removed during the process of upstreaming this functionality, and
|
|
|
|
|
# will still be needed in nix until the macOS SDK reaches 10.13+.
|
|
|
|
|
./provide-fallback-for-utimensat.patch
|
2022-03-22 13:21:21 +00:00
|
|
|
|
# Cocoa clipboard support only works on macOS 10.14+
|
|
|
|
|
./revert-ui-cocoa-add-clipboard-support.patch
|
|
|
|
|
# Standard about panel requires AppKit and macOS 10.13+
|
|
|
|
|
(fetchpatch {
|
|
|
|
|
url = "https://gitlab.com/qemu-project/qemu/-/commit/99eb313ddbbcf73c1adcdadceba1423b691c6d05.diff";
|
|
|
|
|
sha256 = "sha256-gTRf9XENAfbFB3asYCXnw4OV4Af6VE1W56K2xpYDhgM=";
|
|
|
|
|
revert = true;
|
|
|
|
|
})
|
2022-05-21 09:24:16 +00:00
|
|
|
|
# Workaround for upstream issue with nested virtualisation: https://gitlab.com/qemu-project/qemu/-/issues/1008
|
|
|
|
|
(fetchpatch {
|
|
|
|
|
url = "https://gitlab.com/qemu-project/qemu/-/commit/3e4546d5bd38a1e98d4bd2de48631abf0398a3a2.diff";
|
|
|
|
|
sha256 = "sha256-oC+bRjEHixv1QEFO9XAm4HHOwoiT+NkhknKGPydnZ5E=";
|
|
|
|
|
revert = true;
|
|
|
|
|
})
|
2022-02-28 16:14:16 +00:00
|
|
|
|
]
|
2022-06-08 16:07:15 +00:00
|
|
|
|
++ lib.optional nixosTestRunner ./force-uid0-on-9p.patch;
|
2017-02-22 08:06:49 +00:00
|
|
|
|
|
2021-02-10 20:48:54 +00:00
|
|
|
|
postPatch = ''
|
2021-05-21 06:52:56 +00:00
|
|
|
|
# Otherwise tries to ensure /var/run exists.
|
2022-12-14 20:20:33 +00:00
|
|
|
|
sed -i "/install_emptydir(get_option('localstatedir') \/ 'run')/d" \
|
2021-02-10 20:48:54 +00:00
|
|
|
|
qga/meson.build
|
|
|
|
|
'';
|
|
|
|
|
|
2017-07-21 16:39:50 +00:00
|
|
|
|
preConfigure = ''
|
|
|
|
|
unset CPP # intereferes with dependency calculation
|
2020-12-15 18:25:55 +00:00
|
|
|
|
# this script isn't marked as executable b/c it's indirectly used by meson. Needed to patch its shebang
|
|
|
|
|
chmod +x ./scripts/shaderinclude.pl
|
|
|
|
|
patchShebangs .
|
2021-02-08 21:42:05 +00:00
|
|
|
|
# avoid conflicts with libc++ include for <version>
|
|
|
|
|
mv VERSION QEMU_VERSION
|
2021-05-01 00:22:19 +00:00
|
|
|
|
substituteInPlace configure \
|
|
|
|
|
--replace '$source_path/VERSION' '$source_path/QEMU_VERSION'
|
2021-02-08 21:42:05 +00:00
|
|
|
|
substituteInPlace meson.build \
|
|
|
|
|
--replace "'VERSION'" "'QEMU_VERSION'"
|
2017-07-21 16:39:50 +00:00
|
|
|
|
'';
|
|
|
|
|
|
2021-08-04 18:54:48 +00:00
|
|
|
|
configureFlags = [
|
2021-11-21 20:26:51 +00:00
|
|
|
|
"--disable-strip" # We'll strip ourselves after separating debug info.
|
2021-08-04 18:54:48 +00:00
|
|
|
|
"--enable-docs"
|
|
|
|
|
"--enable-tools"
|
|
|
|
|
"--localstatedir=/var"
|
|
|
|
|
"--sysconfdir=/etc"
|
2021-11-24 00:07:08 +00:00
|
|
|
|
# Always use our Meson, not the bundled version, which doesn't
|
|
|
|
|
# have our patches and will be subtly broken because of that.
|
|
|
|
|
"--meson=meson"
|
2021-11-28 09:40:29 +00:00
|
|
|
|
"--cross-prefix=${stdenv.cc.targetPrefix}"
|
2022-03-22 13:21:21 +00:00
|
|
|
|
(lib.enableFeature guestAgentSupport "guest-agent")
|
2021-08-04 18:54:48 +00:00
|
|
|
|
] ++ lib.optional numaSupport "--enable-numa"
|
|
|
|
|
++ lib.optional seccompSupport "--enable-seccomp"
|
|
|
|
|
++ lib.optional smartcardSupport "--enable-smartcard"
|
|
|
|
|
++ lib.optional spiceSupport "--enable-spice"
|
|
|
|
|
++ lib.optional usbredirSupport "--enable-usb-redir"
|
|
|
|
|
++ lib.optional (hostCpuTargets != null) "--target-list=${lib.concatStringsSep "," hostCpuTargets}"
|
2022-10-16 23:29:54 +00:00
|
|
|
|
++ lib.optionals stdenv.isDarwin [ "--enable-cocoa" "--enable-hvf" ]
|
2021-08-04 18:54:48 +00:00
|
|
|
|
++ lib.optional stdenv.isLinux "--enable-linux-aio"
|
|
|
|
|
++ lib.optional gtkSupport "--enable-gtk"
|
|
|
|
|
++ lib.optional xenSupport "--enable-xen"
|
|
|
|
|
++ lib.optional cephSupport "--enable-rbd"
|
|
|
|
|
++ lib.optional glusterfsSupport "--enable-glusterfs"
|
|
|
|
|
++ lib.optional openGLSupport "--enable-opengl"
|
|
|
|
|
++ lib.optional virglSupport "--enable-virglrenderer"
|
|
|
|
|
++ lib.optional tpmSupport "--enable-tpm"
|
|
|
|
|
++ lib.optional libiscsiSupport "--enable-libiscsi"
|
2021-11-14 22:12:02 +00:00
|
|
|
|
++ lib.optional smbdSupport "--smbd=${samba}/bin/smbd"
|
2022-10-03 15:44:04 +00:00
|
|
|
|
++ lib.optional uringSupport "--enable-linux-io-uring"
|
|
|
|
|
++ lib.optional canokeySupport "--enable-canokey";
|
2015-06-01 18:55:53 +00:00
|
|
|
|
|
2020-06-01 20:56:37 +00:00
|
|
|
|
dontWrapGApps = true;
|
2018-04-25 03:20:18 +00:00
|
|
|
|
|
2021-10-01 05:42:17 +00:00
|
|
|
|
# QEMU attaches entitlements with codesign and strip removes those,
|
|
|
|
|
# voiding the entitlements and making it non-operational.
|
|
|
|
|
# The alternative is to re-sign with entitlements after stripping:
|
|
|
|
|
# * https://github.com/qemu/qemu/blob/v6.1.0/scripts/entitlement.sh#L25
|
|
|
|
|
dontStrip = stdenv.isDarwin;
|
|
|
|
|
|
2020-06-01 20:56:37 +00:00
|
|
|
|
postFixup = ''
|
2020-07-22 05:38:23 +00:00
|
|
|
|
# the .desktop is both invalid and pointless
|
2021-03-01 17:32:39 +00:00
|
|
|
|
rm -f $out/share/applications/qemu.desktop
|
2022-03-22 13:21:21 +00:00
|
|
|
|
'' + lib.optionalString guestAgentSupport ''
|
2022-04-09 17:29:04 +00:00
|
|
|
|
# move qemu-ga (guest agent) to separate output
|
2020-07-22 05:38:23 +00:00
|
|
|
|
mkdir -p $ga/bin
|
2022-04-09 17:29:04 +00:00
|
|
|
|
mv $out/bin/qemu-ga $ga/bin/
|
|
|
|
|
ln -s $ga/bin/qemu-ga $out/bin
|
2022-03-02 10:00:10 +00:00
|
|
|
|
remove-references-to -t $out $ga/bin/qemu-ga
|
2021-08-04 18:54:48 +00:00
|
|
|
|
'' + lib.optionalString gtkSupport ''
|
2020-07-22 05:38:23 +00:00
|
|
|
|
# wrap GTK Binaries
|
|
|
|
|
for f in $out/bin/qemu-system-*; do
|
|
|
|
|
wrapGApp $f
|
|
|
|
|
done
|
|
|
|
|
'';
|
2020-12-15 18:25:55 +00:00
|
|
|
|
preBuild = "cd build";
|
2016-04-07 23:45:53 +00:00
|
|
|
|
|
2021-12-03 21:35:35 +00:00
|
|
|
|
# tests can still timeout on slower systems
|
|
|
|
|
inherit doCheck;
|
2023-01-21 12:00:00 +00:00
|
|
|
|
nativeCheckInputs = [ socat ];
|
2021-12-03 21:35:35 +00:00
|
|
|
|
preCheck = ''
|
|
|
|
|
# time limits are a little meagre for a build machine that's
|
|
|
|
|
# potentially under load.
|
|
|
|
|
substituteInPlace ../tests/unit/meson.build \
|
|
|
|
|
--replace 'timeout: slow_tests' 'timeout: 50 * slow_tests'
|
|
|
|
|
substituteInPlace ../tests/qtest/meson.build \
|
|
|
|
|
--replace 'timeout: slow_qtests' 'timeout: 50 * slow_qtests'
|
|
|
|
|
substituteInPlace ../tests/fp/meson.build \
|
|
|
|
|
--replace 'timeout: 90)' 'timeout: 300)'
|
|
|
|
|
|
|
|
|
|
# point tests towards correct binaries
|
|
|
|
|
substituteInPlace ../tests/unit/test-qga.c \
|
|
|
|
|
--replace '/bin/echo' "$(type -P echo)"
|
|
|
|
|
substituteInPlace ../tests/unit/test-io-channel-command.c \
|
|
|
|
|
--replace '/bin/socat' "$(type -P socat)"
|
|
|
|
|
|
|
|
|
|
# combined with a long package name, some temp socket paths
|
|
|
|
|
# can end up exceeding max socket name len
|
|
|
|
|
substituteInPlace ../tests/qtest/bios-tables-test.c \
|
|
|
|
|
--replace 'qemu-test_acpi_%s_tcg_%s' '%s_%s'
|
|
|
|
|
|
|
|
|
|
# get-fsinfo attempts to access block devices, disallowed by sandbox
|
|
|
|
|
sed -i -e '/\/qga\/get-fsinfo/d' -e '/\/qga\/blacklist/d' \
|
|
|
|
|
../tests/unit/test-qga.c
|
|
|
|
|
'' + lib.optionalString stdenv.isDarwin ''
|
|
|
|
|
# skip test that stalls on darwin, perhaps due to subtle differences
|
|
|
|
|
# in fifo behaviour
|
|
|
|
|
substituteInPlace ../tests/unit/meson.build \
|
|
|
|
|
--replace "'test-io-channel-command'" "#'test-io-channel-command'"
|
|
|
|
|
'';
|
|
|
|
|
|
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 = ''
|
2022-01-20 02:12:07 +00:00
|
|
|
|
ln -s $out/libexec/virtiofsd $out/bin
|
2022-02-01 13:14:42 +00:00
|
|
|
|
ln -s $out/bin/qemu-system-${stdenv.hostPlatform.qemuArch} $out/bin/qemu-kvm
|
2018-11-13 22:54:08 +00:00
|
|
|
|
'';
|
2013-07-31 12:31:04 +00:00
|
|
|
|
|
2017-12-07 21:26:42 +00:00
|
|
|
|
passthru = {
|
|
|
|
|
qemu-system-i386 = "bin/qemu-system-i386";
|
2021-12-03 21:35:35 +00:00
|
|
|
|
tests = {
|
|
|
|
|
qemu-tests = qemu.override { doCheck = true; };
|
|
|
|
|
};
|
2017-12-07 21:26:42 +00:00
|
|
|
|
};
|
|
|
|
|
|
2021-04-26 00:49:20 +00:00
|
|
|
|
# Builds in ~3h with 2 cores, and ~20m with a big-parallel builder.
|
|
|
|
|
requiredSystemFeatures = [ "big-parallel" ];
|
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
|
homepage = "http://www.qemu.org/";
|
2013-07-04 14:52:43 +00:00
|
|
|
|
description = "A generic and open source machine emulator and virtualizer";
|
2014-02-20 20:02:55 +00:00
|
|
|
|
license = licenses.gpl2Plus;
|
2022-01-04 15:31:11 +00:00
|
|
|
|
mainProgram = "qemu-kvm";
|
2021-05-01 00:22:19 +00:00
|
|
|
|
maintainers = with maintainers; [ eelco qyliss ];
|
|
|
|
|
platforms = platforms.unix;
|
2022-01-20 02:12:07 +00:00
|
|
|
|
priority = 10; # Prefer virtiofsd from the virtiofsd package.
|
2013-02-08 01:44:02 +00:00
|
|
|
|
};
|
|
|
|
|
}
|