2018-02-26 14:50:46 -08:00
|
|
|
{ stdenv, fetchurl, fetchgit
|
2020-03-08 23:29:46 -07:00
|
|
|
, pkgconfig, makeWrapper, autoreconfHook, fetchpatch
|
2020-02-26 21:53:31 -08:00
|
|
|
, coreutils, libxml2, gnutls, perl, python2, attr, glib, docutils
|
2015-10-03 11:52:03 -07:00
|
|
|
, iproute, iptables, readline, lvm2, utillinux, systemd, libpciaccess, gettext
|
2017-03-25 06:58:26 -07:00
|
|
|
, libtasn1, ebtables, libgcrypt, yajl, pmutils, libcap_ng, libapparmor
|
2015-12-24 11:59:44 -08:00
|
|
|
, dnsmasq, libnl, libpcap, libxslt, xhtml1, numad, numactl, perlPackages
|
2020-09-26 09:19:31 -07:00
|
|
|
, curl, libiconv, gmp, zfs, parted, bridge-utils, dmidecode, dbus, libtirpc, rpcsvc-proto, darwin
|
2018-06-18 00:30:25 -07:00
|
|
|
, enableXen ? false, xen ? null
|
2018-06-25 04:11:56 -07:00
|
|
|
, enableIscsi ? false, openiscsi
|
2019-02-06 10:52:42 -08:00
|
|
|
, enableCeph ? false, ceph
|
2011-03-14 07:46:41 -07:00
|
|
|
}:
|
2017-03-23 13:26:37 -07:00
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
2018-02-26 14:50:46 -08: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 05:29:36 -08:00
|
|
|
buildFromTarball = stdenv.isDarwin;
|
2018-02-26 14:50:46 -08:00
|
|
|
in stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "libvirt";
|
2020-09-26 09:19:31 -07:00
|
|
|
version = "6.6.0";
|
2010-01-27 04:12:35 -08:00
|
|
|
|
2018-02-26 14:50:46 -08:00
|
|
|
src =
|
|
|
|
if buildFromTarball then
|
|
|
|
fetchurl {
|
2020-09-29 01:09:09 -07:00
|
|
|
url = "https://libvirt.org/sources/${pname}-${version}.tar.xz";
|
2020-09-26 09:19:31 -07:00
|
|
|
sha256 = "1y8y13zvh820f4b15287wb77wq7ra7kbfnpblzhm1dki5pfjvrcl";
|
2018-02-26 14:50:46 -08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
fetchgit {
|
2020-09-29 01:09:09 -07:00
|
|
|
url = "https://libvirt.org/git/libvirt.git";
|
2018-02-26 14:50:46 -08:00
|
|
|
rev = "v${version}";
|
2020-09-26 09:19:31 -07:00
|
|
|
sha256 = "09hsbm2qmx0jfmm418rf5lx374g85bwgg0kzlga62x5180jhsssn";
|
2018-02-26 14:50:46 -08:00
|
|
|
fetchSubmodules = true;
|
|
|
|
};
|
2016-01-04 07:50:34 -08:00
|
|
|
|
2020-09-26 09:19:31 -07: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 10:50:54 -07:00
|
|
|
];
|
|
|
|
|
2014-03-12 00:27:05 -07:00
|
|
|
buildInputs = [
|
2017-03-28 10:13:39 -07:00
|
|
|
libxml2 gnutls perl python2 readline gettext libtasn1 libgcrypt yajl
|
2020-09-26 09:19:31 -07:00
|
|
|
libxslt xhtml1 perlPackages.XMLXPath curl libpcap glib dbus
|
2017-03-23 13:26:37 -07:00
|
|
|
] ++ optionals stdenv.isLinux [
|
2018-08-21 13:54:54 -07:00
|
|
|
libpciaccess lvm2 utillinux systemd libnl numad zfs
|
2020-09-26 09:19:31 -07:00
|
|
|
libapparmor libcap_ng numactl attr parted libtirpc
|
2018-06-18 00:30:25 -07:00
|
|
|
] ++ optionals (enableXen && stdenv.isLinux && stdenv.isx86_64) [
|
2017-12-06 02:55:39 -08:00
|
|
|
xen
|
2018-06-25 04:11:56 -07:00
|
|
|
] ++ optionals enableIscsi [
|
|
|
|
openiscsi
|
2019-02-06 10:52:42 -08:00
|
|
|
] ++ optionals enableCeph [
|
|
|
|
ceph
|
2017-03-23 13:26:37 -07:00
|
|
|
] ++ optionals stdenv.isDarwin [
|
2017-12-06 02:55:39 -08:00
|
|
|
libiconv gmp
|
2014-03-12 00:27:05 -07:00
|
|
|
];
|
|
|
|
|
2018-02-26 14:50:46 -08:00
|
|
|
preConfigure = ''
|
2018-06-25 04:11:56 -07:00
|
|
|
PATH=${stdenv.lib.makeBinPath ([ dnsmasq ] ++ optionals stdenv.isLinux [ iproute iptables ebtables lvm2 systemd numad ] ++ optionals enableIscsi [ openiscsi ])}:$PATH
|
2017-08-01 18:18:57 -07: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 01:26:49 -08:00
|
|
|
patchShebangs . # fixes /usr/bin/python references
|
2020-02-26 21:53:31 -08:00
|
|
|
mkdir -p build && cd build
|
2018-08-21 13:03:58 -07:00
|
|
|
'';
|
2014-03-12 00:27:05 -07:00
|
|
|
|
2020-02-26 21:53:31 -08:00
|
|
|
configureScript = "../configure";
|
|
|
|
|
|
|
|
dontAddDisableDepTrack = true;
|
|
|
|
|
2014-03-12 00:27:05 -07:00
|
|
|
configureFlags = [
|
2020-09-29 00:58:48 -07:00
|
|
|
"--with-runstatedir=/run" # TODO: remove when autoconf 2.70 is released
|
2014-03-12 00:27:05 -07:00
|
|
|
"--localstatedir=/var"
|
2015-12-18 05:07:53 -08:00
|
|
|
"--sysconfdir=/var/lib"
|
2014-10-27 09:34:41 -07:00
|
|
|
"--with-libpcap"
|
2018-08-21 13:54:54 -07:00
|
|
|
"--with-qemu"
|
2015-12-24 20:34:47 -08:00
|
|
|
"--with-vmware"
|
|
|
|
"--with-vbox"
|
|
|
|
"--with-test"
|
|
|
|
"--with-esx"
|
|
|
|
"--with-remote"
|
2020-04-15 09:43:30 -07:00
|
|
|
"--with-polkit"
|
2017-03-23 13:26:37 -07:00
|
|
|
] ++ optionals stdenv.isLinux [
|
2019-01-02 05:35:38 -08:00
|
|
|
"QEMU_BRIDGE_HELPER=/run/wrappers/bin/qemu-bridge-helper"
|
|
|
|
"QEMU_PR_HELPER=/run/libvirt/nix-helpers/qemu-pr-helper"
|
2020-01-12 14:28:15 -08:00
|
|
|
"EBTABLES_PATH=${ebtables}/bin/ebtables-legacy"
|
2020-08-17 10:50:54 -07:00
|
|
|
"CFLAGS=-I${libtirpc.dev}/include/tirpc"
|
2017-03-25 06:58:26 -07:00
|
|
|
"--with-attr"
|
|
|
|
"--with-apparmor"
|
|
|
|
"--with-secdriver-apparmor"
|
2015-12-15 10:55:39 -08:00
|
|
|
"--with-numad"
|
2015-12-24 20:34:47 -08:00
|
|
|
"--with-macvtap"
|
|
|
|
"--with-virtualport"
|
2017-06-04 22:50:46 -07:00
|
|
|
"--with-storage-disk"
|
2017-07-20 14:31:04 -07:00
|
|
|
] ++ optionals (stdenv.isLinux && zfs != null) [
|
2016-05-22 19:03:41 -07:00
|
|
|
"--with-storage-zfs"
|
2018-06-25 04:11:56 -07:00
|
|
|
] ++ optionals enableIscsi [
|
|
|
|
"--with-storage-iscsi"
|
2019-02-06 10:52:42 -08:00
|
|
|
] ++ optionals enableCeph [
|
|
|
|
"--with-storage-rbd"
|
2017-03-23 13:26:37 -07:00
|
|
|
] ++ optionals stdenv.isDarwin [
|
2015-12-24 20:34:47 -08:00
|
|
|
"--with-init-script=none"
|
2014-03-12 00:27:05 -07:00
|
|
|
];
|
|
|
|
|
|
|
|
installFlags = [
|
2020-07-08 04:00:16 -07:00
|
|
|
"runstatedir=${placeholder "out"}/run"
|
2014-03-12 00:27:05 -07:00
|
|
|
"localstatedir=$(TMPDIR)/var"
|
2015-12-18 05:07:53 -08:00
|
|
|
"sysconfdir=$(out)/var/lib"
|
2014-03-12 00:27:05 -07:00
|
|
|
];
|
|
|
|
|
2018-06-26 03:17:04 -07:00
|
|
|
postInstall = let
|
|
|
|
binPath = [ iptables iproute pmutils numad numactl bridge-utils dmidecode dnsmasq ebtables ] ++ optionals enableIscsi [ openiscsi ];
|
|
|
|
in ''
|
2014-03-12 00:27:05 -07:00
|
|
|
substituteInPlace $out/libexec/libvirt-guests.sh \
|
2019-08-23 08:47:09 -07:00
|
|
|
--replace 'ON_BOOT=start' 'ON_BOOT=''${ON_BOOT:-start}' \
|
2018-02-26 14:50:46 -08: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 13:26:37 -07:00
|
|
|
'' + optionalString stdenv.isLinux ''
|
2017-09-03 00:24:49 -07:00
|
|
|
substituteInPlace $out/lib/systemd/system/libvirtd.service --replace /bin/kill ${coreutils}/bin/kill
|
2017-06-04 22:50:46 -07:00
|
|
|
rm $out/lib/systemd/system/{virtlockd,virtlogd}.*
|
2014-03-12 00:27:05 -07:00
|
|
|
wrapProgram $out/sbin/libvirtd \
|
2018-06-26 03:17:04 -07:00
|
|
|
--prefix PATH : /run/libvirt/nix-emulators:${makeBinPath binPath}
|
2014-03-12 00:27:05 -07:00
|
|
|
'';
|
2011-02-25 07:56:10 -08:00
|
|
|
|
2012-04-19 14:40:07 -07:00
|
|
|
enableParallelBuilding = true;
|
2014-03-12 00:27:05 -07:00
|
|
|
|
2017-03-23 13:26:37 -07:00
|
|
|
meta = {
|
2020-09-29 00:45:13 -07:00
|
|
|
homepage = "https://libvirt.org/";
|
2020-03-31 18:11:51 -07:00
|
|
|
repositories.git = "git://libvirt.org/libvirt.git";
|
2014-03-12 00:27:05 -07:00
|
|
|
description = ''
|
|
|
|
A toolkit to interact with the virtualization capabilities of recent
|
|
|
|
versions of Linux (and other OSes)
|
|
|
|
'';
|
|
|
|
license = licenses.lgpl2Plus;
|
2015-12-24 20:34:47 -08:00
|
|
|
platforms = platforms.unix;
|
2019-08-20 10:36:05 -07:00
|
|
|
maintainers = with maintainers; [ fpletz globin ];
|
2010-01-27 04:12:35 -08:00
|
|
|
};
|
|
|
|
}
|