2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl, fetchgit
|
2021-01-14 11:19:09 +00:00
|
|
|
, makeWrapper, autoreconfHook, fetchpatch
|
2020-02-27 05:53:31 +00:00
|
|
|
, coreutils, libxml2, gnutls, perl, python2, attr, glib, docutils
|
2021-01-14 11:19:09 +00:00
|
|
|
, iproute, readline, lvm2, util-linux, systemd, libpciaccess, gettext
|
2021-01-18 09:58:34 +00:00
|
|
|
, libtasn1, iptables, ebtables, libgcrypt, yajl, pmutils, libcap_ng, libapparmor
|
2015-12-24 19:59:44 +00:00
|
|
|
, dnsmasq, libnl, libpcap, libxslt, xhtml1, numad, numactl, perlPackages
|
2020-09-26 17:19:31 +01:00
|
|
|
, curl, libiconv, gmp, zfs, parted, bridge-utils, dmidecode, dbus, libtirpc, rpcsvc-proto, darwin
|
2020-11-10 13:18:52 +00:00
|
|
|
, meson, ninja, audit, cmake, bash-completion, pkg-config
|
2018-06-18 08:30:25 +01:00
|
|
|
, enableXen ? false, xen ? null
|
2018-06-25 12:11:56 +01:00
|
|
|
, enableIscsi ? false, openiscsi
|
2019-02-06 18:52:42 +00:00
|
|
|
, enableCeph ? false, ceph
|
2011-03-14 14:46:41 +00:00
|
|
|
}:
|
2017-03-23 20:26:37 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
with lib;
|
2017-03-23 20:26:37 +00:00
|
|
|
|
2018-02-26 22:50:46 +00:00
|
|
|
# if you update, also bump <nixpkgs/pkgs/development/python-modules/libvirt/default.nix> and SysVirt in <nixpkgs/pkgs/top-level/perl-packages.nix>
|
|
|
|
let
|
2018-03-09 13:29:36 +00:00
|
|
|
buildFromTarball = stdenv.isDarwin;
|
2021-01-18 09:58:34 +00:00
|
|
|
# libvirt hardcodes the binary name 'ebtables', but in nixpkgs the ebtables
|
|
|
|
# binary we want to use is named 'ebtables-legacy'.
|
|
|
|
# Create a derivation to alias the binary name so that libvirt can find the right one, and use that below.
|
|
|
|
ebtables-compat = stdenv.mkDerivation {
|
|
|
|
pname = "ebtables-compat";
|
|
|
|
version = ebtables.version;
|
|
|
|
src = null;
|
|
|
|
buildInputs = [ ebtables ];
|
|
|
|
buildCommand = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
ln -sf ${ebtables}/bin/ebtables-legacy $out/bin/ebtables
|
|
|
|
'';
|
|
|
|
};
|
2018-02-26 22:50:46 +00:00
|
|
|
in stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libvirt";
|
2021-01-26 18:23:41 +00:00
|
|
|
version = "7.0.0";
|
2010-01-27 12:12:35 +00:00
|
|
|
|
2018-02-26 22:50:46 +00:00
|
|
|
src =
|
|
|
|
if buildFromTarball then
|
|
|
|
fetchurl {
|
2020-09-29 09:09:09 +01:00
|
|
|
url = "https://libvirt.org/sources/${pname}-${version}.tar.xz";
|
2021-01-26 18:23:41 +00:00
|
|
|
sha256 = "12fxkpy7j2qhfxypw9jg3bzdd9xx6vf6x96iy5kjihh89n236f6a";
|
2018-02-26 22:50:46 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
fetchgit {
|
2020-10-01 09:55:56 +01:00
|
|
|
url = "https://gitlab.com/libvirt/libvirt.git";
|
2018-02-26 22:50:46 +00:00
|
|
|
rev = "v${version}";
|
2021-01-26 18:23:41 +00:00
|
|
|
sha256 = "0xg9d410008mny73r2cp5ipghqpk0gz9gy7j32vcfk691dq75b3c";
|
2018-02-26 22:50:46 +00:00
|
|
|
fetchSubmodules = true;
|
|
|
|
};
|
2016-01-04 15:50:34 +00:00
|
|
|
|
2021-01-14 11:19:09 +00:00
|
|
|
patches = [
|
|
|
|
./0001-meson-patch-in-an-install-prefix-for-building-on-nix.patch
|
|
|
|
];
|
|
|
|
|
2020-09-26 17:19:31 +01:00
|
|
|
nativeBuildInputs = [
|
2021-01-14 11:19:09 +00:00
|
|
|
ninja meson cmake makeWrapper pkg-config docutils
|
2020-09-26 17:19:31 +01:00
|
|
|
] ++ optional (!stdenv.isDarwin) [
|
|
|
|
rpcsvc-proto
|
|
|
|
] ++ optionals stdenv.isDarwin [
|
|
|
|
darwin.developer_cmds # needed for rpcgen
|
2020-08-17 18:50:54 +01:00
|
|
|
];
|
|
|
|
|
2014-03-12 07:27:05 +00:00
|
|
|
buildInputs = [
|
2020-11-10 13:18:52 +00:00
|
|
|
bash-completion pkg-config
|
2017-03-28 18:13:39 +01:00
|
|
|
libxml2 gnutls perl python2 readline gettext libtasn1 libgcrypt yajl
|
2020-09-26 17:19:31 +01:00
|
|
|
libxslt xhtml1 perlPackages.XMLXPath curl libpcap glib dbus
|
2017-03-23 20:26:37 +00:00
|
|
|
] ++ optionals stdenv.isLinux [
|
2021-01-14 11:19:09 +00:00
|
|
|
audit libpciaccess lvm2 util-linux systemd libnl numad zfs
|
2020-09-26 17:19:31 +01:00
|
|
|
libapparmor libcap_ng numactl attr parted libtirpc
|
2018-06-18 08:30:25 +01:00
|
|
|
] ++ optionals (enableXen && stdenv.isLinux && stdenv.isx86_64) [
|
2017-12-06 10:55:39 +00:00
|
|
|
xen
|
2018-06-25 12:11:56 +01:00
|
|
|
] ++ optionals enableIscsi [
|
|
|
|
openiscsi
|
2019-02-06 18:52:42 +00:00
|
|
|
] ++ optionals enableCeph [
|
|
|
|
ceph
|
2017-03-23 20:26:37 +00:00
|
|
|
] ++ optionals stdenv.isDarwin [
|
2017-12-06 10:55:39 +00:00
|
|
|
libiconv gmp
|
2014-03-12 07:27:05 +00:00
|
|
|
];
|
|
|
|
|
2020-11-10 13:18:52 +00:00
|
|
|
preConfigure = let
|
|
|
|
overrides = {
|
|
|
|
QEMU_BRIDGE_HELPER = "/run/wrappers/bin/qemu-bridge-helper";
|
2021-01-14 11:19:09 +00:00
|
|
|
QEMU_PR_HELPER = "/run/libvirt/nix-helpers/qemu-pr-helper";
|
2020-11-10 13:18:52 +00:00
|
|
|
};
|
|
|
|
patchBuilder = var: value: ''
|
|
|
|
sed -i meson.build -e "s|conf.set_quoted('${var}',.*|conf.set_quoted('${var}','${value}')|"
|
|
|
|
'';
|
|
|
|
in ''
|
2021-01-18 09:58:34 +00:00
|
|
|
PATH=${lib.makeBinPath ([ dnsmasq ] ++ optionals stdenv.isLinux [ iproute iptables ebtables-compat lvm2 systemd numad ] ++ optionals enableIscsi [ openiscsi ])}:$PATH
|
2017-08-02 02:18:57 +01:00
|
|
|
# the path to qemu-kvm will be stored in VM's .xml and .save files
|
|
|
|
# do not use "''${qemu_kvm}/bin/qemu-kvm" to avoid bound VMs to particular qemu derivations
|
|
|
|
substituteInPlace src/lxc/lxc_conf.c \
|
|
|
|
--replace 'lxc_path,' '"/run/libvirt/nix-emulators/libvirt_lxc",'
|
2015-01-08 09:26:49 +00:00
|
|
|
patchShebangs . # fixes /usr/bin/python references
|
2020-11-10 13:18:52 +00:00
|
|
|
''
|
2021-01-23 17:15:07 +00:00
|
|
|
+ (lib.concatStringsSep "\n" (lib.mapAttrsToList patchBuilder overrides));
|
2021-01-14 11:19:09 +00:00
|
|
|
|
2020-11-10 13:18:52 +00:00
|
|
|
mesonAutoFeatures = "auto";
|
2021-01-14 11:19:09 +00:00
|
|
|
|
2020-11-10 13:18:52 +00:00
|
|
|
mesonFlags = let
|
|
|
|
opt = option: enable: "-D${option}=${if enable then "enabled" else "disabled"}";
|
|
|
|
in [
|
2021-01-14 11:19:09 +00:00
|
|
|
"--sysconfdir=/var/lib"
|
|
|
|
"-Dinstall_prefix=${placeholder "out"}"
|
2021-01-16 21:44:42 +00:00
|
|
|
"-Dlocalstatedir=/var"
|
|
|
|
"-Drunstatedir=/run"
|
2020-11-10 13:18:52 +00:00
|
|
|
"-Dlibpcap=enabled"
|
|
|
|
"-Ddriver_qemu=enabled"
|
|
|
|
"-Ddriver_vmware=enabled"
|
|
|
|
"-Ddriver_vbox=enabled"
|
|
|
|
"-Ddriver_test=enabled"
|
|
|
|
"-Ddriver_esx=enabled"
|
|
|
|
"-Ddriver_remote=enabled"
|
|
|
|
"-Dpolkit=enabled"
|
|
|
|
(opt "storage_iscsi" enableIscsi)
|
2017-03-23 20:26:37 +00:00
|
|
|
] ++ optionals stdenv.isLinux [
|
2020-11-10 13:18:52 +00:00
|
|
|
(opt "storage_zfs" (zfs != null))
|
|
|
|
"-Dattr=enabled"
|
|
|
|
"-Dapparmor=enabled"
|
|
|
|
"-Dsecdriver_apparmor=enabled"
|
|
|
|
"-Dnumad=enabled"
|
|
|
|
"-Dstorage_disk=enabled"
|
|
|
|
(opt "storage_rbd" enableCeph)
|
2017-03-23 20:26:37 +00:00
|
|
|
] ++ optionals stdenv.isDarwin [
|
2020-11-10 13:18:52 +00:00
|
|
|
"-Dinit_script=none"
|
2014-03-12 07:27:05 +00:00
|
|
|
];
|
|
|
|
|
2018-06-26 11:17:04 +01:00
|
|
|
postInstall = let
|
2021-01-18 09:58:34 +00:00
|
|
|
# Keep the legacy iptables binary for now for backwards compatibility (comment on #109332)
|
|
|
|
binPath = [ iptables ebtables-compat iproute pmutils numad numactl bridge-utils dmidecode dnsmasq ] ++ optionals enableIscsi [ openiscsi ];
|
2018-06-26 11:17:04 +01:00
|
|
|
in ''
|
2014-03-12 07:27:05 +00:00
|
|
|
substituteInPlace $out/libexec/libvirt-guests.sh \
|
2021-01-18 09:58:34 +00:00
|
|
|
--replace 'ON_BOOT="start"' 'ON_BOOT=''${ON_BOOT:-start}' \
|
|
|
|
--replace 'ON_SHUTDOWN="suspend"' 'ON_SHUTDOWN=''${ON_SHUTDOWN:-suspend}' \
|
|
|
|
--replace "$out/bin" '${gettext}/bin' \
|
|
|
|
--replace 'lock/subsys' 'lock' \
|
|
|
|
--replace 'gettext.sh' 'gettext.sh
|
2018-02-26 22:50:46 +00:00
|
|
|
# Added in nixpkgs:
|
|
|
|
gettext() { "${gettext}/bin/gettext" "$@"; }
|
|
|
|
'
|
2017-03-23 20:26:37 +00:00
|
|
|
'' + optionalString stdenv.isLinux ''
|
2017-09-03 08:24:49 +01:00
|
|
|
substituteInPlace $out/lib/systemd/system/libvirtd.service --replace /bin/kill ${coreutils}/bin/kill
|
2017-06-05 06:50:46 +01:00
|
|
|
rm $out/lib/systemd/system/{virtlockd,virtlogd}.*
|
2014-03-12 07:27:05 +00:00
|
|
|
wrapProgram $out/sbin/libvirtd \
|
2018-06-26 11:17:04 +01:00
|
|
|
--prefix PATH : /run/libvirt/nix-emulators:${makeBinPath binPath}
|
2014-03-12 07:27:05 +00:00
|
|
|
'';
|
2011-02-25 15:56:10 +00:00
|
|
|
|
2017-03-23 20:26:37 +00:00
|
|
|
meta = {
|
2020-09-29 08:45:13 +01:00
|
|
|
homepage = "https://libvirt.org/";
|
2020-04-01 02:11:51 +01:00
|
|
|
repositories.git = "git://libvirt.org/libvirt.git";
|
2014-03-12 07:27:05 +00:00
|
|
|
description = ''
|
|
|
|
A toolkit to interact with the virtualization capabilities of recent
|
|
|
|
versions of Linux (and other OSes)
|
|
|
|
'';
|
|
|
|
license = licenses.lgpl2Plus;
|
2015-12-25 04:34:47 +00:00
|
|
|
platforms = platforms.unix;
|
2019-08-20 18:36:05 +01:00
|
|
|
maintainers = with maintainers; [ fpletz globin ];
|
2010-01-27 12:12:35 +00:00
|
|
|
};
|
|
|
|
}
|