2018-02-26 22:50:46 +00:00
|
|
|
{ stdenv, fetchurl, fetchgit
|
2020-03-09 06:29:46 +00:00
|
|
|
, pkgconfig, makeWrapper, autoreconfHook, fetchpatch
|
2020-02-27 05:53:31 +00:00
|
|
|
, coreutils, libxml2, gnutls, perl, python2, attr, glib, docutils
|
2015-10-03 19:52:03 +01:00
|
|
|
, iproute, iptables, readline, lvm2, utillinux, systemd, libpciaccess, gettext
|
2017-03-25 13:58:26 +00:00
|
|
|
, libtasn1, 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
|
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
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
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;
|
2018-02-26 22:50:46 +00:00
|
|
|
in stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libvirt";
|
2020-09-26 17:19:31 +01:00
|
|
|
version = "6.6.0";
|
2010-01-27 12:12:35 +00:00
|
|
|
|
2018-02-26 22:50:46 +00:00
|
|
|
src =
|
|
|
|
if buildFromTarball then
|
|
|
|
fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "http://libvirt.org/sources/${pname}-${version}.tar.xz";
|
2020-09-26 17:19:31 +01:00
|
|
|
sha256 = "1y8y13zvh820f4b15287wb77wq7ra7kbfnpblzhm1dki5pfjvrcl";
|
2018-02-26 22:50:46 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
fetchgit {
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "git://libvirt.org/libvirt.git";
|
2018-02-26 22:50:46 +00:00
|
|
|
rev = "v${version}";
|
2020-09-26 17:19:31 +01:00
|
|
|
sha256 = "09hsbm2qmx0jfmm418rf5lx374g85bwgg0kzlga62x5180jhsssn";
|
2018-02-26 22:50:46 +00:00
|
|
|
fetchSubmodules = true;
|
|
|
|
};
|
2016-01-04 15:50:34 +00:00
|
|
|
|
2020-09-26 17:19:31 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
makeWrapper pkgconfig docutils
|
|
|
|
] ++ optionals (!buildFromTarball) [
|
|
|
|
autoreconfHook
|
|
|
|
] ++ 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 = [
|
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 [
|
2018-08-21 21:54:54 +01:00
|
|
|
libpciaccess lvm2 utillinux 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
|
|
|
];
|
|
|
|
|
2018-02-26 22:50:46 +00:00
|
|
|
preConfigure = ''
|
2018-06-25 12:11:56 +01:00
|
|
|
PATH=${stdenv.lib.makeBinPath ([ dnsmasq ] ++ optionals stdenv.isLinux [ iproute iptables ebtables 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-02-27 05:53:31 +00:00
|
|
|
mkdir -p build && cd build
|
2018-08-21 21:03:58 +01:00
|
|
|
'';
|
2014-03-12 07:27:05 +00:00
|
|
|
|
2020-02-27 05:53:31 +00:00
|
|
|
configureScript = "../configure";
|
|
|
|
|
|
|
|
dontAddDisableDepTrack = true;
|
|
|
|
|
2014-03-12 07:27:05 +00:00
|
|
|
configureFlags = [
|
2020-09-29 08:58:48 +01:00
|
|
|
"--with-runstatedir=/run" # TODO: remove when autoconf 2.70 is released
|
2014-03-12 07:27:05 +00:00
|
|
|
"--localstatedir=/var"
|
2015-12-18 13:07:53 +00:00
|
|
|
"--sysconfdir=/var/lib"
|
2014-10-27 16:34:41 +00:00
|
|
|
"--with-libpcap"
|
2018-08-21 21:54:54 +01:00
|
|
|
"--with-qemu"
|
2015-12-25 04:34:47 +00:00
|
|
|
"--with-vmware"
|
|
|
|
"--with-vbox"
|
|
|
|
"--with-test"
|
|
|
|
"--with-esx"
|
|
|
|
"--with-remote"
|
2020-04-15 17:43:30 +01:00
|
|
|
"--with-polkit"
|
2017-03-23 20:26:37 +00:00
|
|
|
] ++ optionals stdenv.isLinux [
|
2019-01-02 13:35:38 +00:00
|
|
|
"QEMU_BRIDGE_HELPER=/run/wrappers/bin/qemu-bridge-helper"
|
|
|
|
"QEMU_PR_HELPER=/run/libvirt/nix-helpers/qemu-pr-helper"
|
2020-01-12 22:28:15 +00:00
|
|
|
"EBTABLES_PATH=${ebtables}/bin/ebtables-legacy"
|
2020-08-17 18:50:54 +01:00
|
|
|
"CFLAGS=-I${libtirpc.dev}/include/tirpc"
|
2017-03-25 13:58:26 +00:00
|
|
|
"--with-attr"
|
|
|
|
"--with-apparmor"
|
|
|
|
"--with-secdriver-apparmor"
|
2015-12-15 18:55:39 +00:00
|
|
|
"--with-numad"
|
2015-12-25 04:34:47 +00:00
|
|
|
"--with-macvtap"
|
|
|
|
"--with-virtualport"
|
2017-06-05 06:50:46 +01:00
|
|
|
"--with-storage-disk"
|
2017-07-20 22:31:04 +01:00
|
|
|
] ++ optionals (stdenv.isLinux && zfs != null) [
|
2016-05-23 03:03:41 +01:00
|
|
|
"--with-storage-zfs"
|
2018-06-25 12:11:56 +01:00
|
|
|
] ++ optionals enableIscsi [
|
|
|
|
"--with-storage-iscsi"
|
2019-02-06 18:52:42 +00:00
|
|
|
] ++ optionals enableCeph [
|
|
|
|
"--with-storage-rbd"
|
2017-03-23 20:26:37 +00:00
|
|
|
] ++ optionals stdenv.isDarwin [
|
2015-12-25 04:34:47 +00:00
|
|
|
"--with-init-script=none"
|
2014-03-12 07:27:05 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
installFlags = [
|
2020-07-08 12:00:16 +01:00
|
|
|
"runstatedir=${placeholder "out"}/run"
|
2014-03-12 07:27:05 +00:00
|
|
|
"localstatedir=$(TMPDIR)/var"
|
2015-12-18 13:07:53 +00:00
|
|
|
"sysconfdir=$(out)/var/lib"
|
2014-03-12 07:27:05 +00:00
|
|
|
];
|
|
|
|
|
2018-06-26 11:17:04 +01:00
|
|
|
postInstall = let
|
|
|
|
binPath = [ iptables iproute pmutils numad numactl bridge-utils dmidecode dnsmasq ebtables ] ++ optionals enableIscsi [ openiscsi ];
|
|
|
|
in ''
|
2014-03-12 07:27:05 +00:00
|
|
|
substituteInPlace $out/libexec/libvirt-guests.sh \
|
2019-08-23 16:47:09 +01:00
|
|
|
--replace 'ON_BOOT=start' 'ON_BOOT=''${ON_BOOT:-start}' \
|
2018-02-26 22:50:46 +00:00
|
|
|
--replace 'ON_SHUTDOWN=suspend' 'ON_SHUTDOWN=''${ON_SHUTDOWN:-suspend}' \
|
|
|
|
--replace "$out/bin" '${gettext}/bin' \
|
|
|
|
--replace 'lock/subsys' 'lock' \
|
|
|
|
--replace 'gettext.sh' 'gettext.sh
|
|
|
|
# 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
|
|
|
|
2012-04-19 22:40:07 +01:00
|
|
|
enableParallelBuilding = true;
|
2014-03-12 07:27:05 +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
|
|
|
};
|
|
|
|
}
|