2016-01-04 07:50:34 -08:00
|
|
|
{ stdenv, fetchurl, fetchpatch
|
|
|
|
, pkgconfig, makeWrapper
|
2017-03-25 06:58:26 -07:00
|
|
|
, libxml2, gnutls, devicemapper, perl, python2, attr
|
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
|
2017-04-10 14:36:35 -07:00
|
|
|
, curl, libiconv, gmp, xen, zfs, parted
|
2011-03-14 07:46:41 -07:00
|
|
|
}:
|
2017-03-23 13:26:37 -07:00
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
2016-04-19 14:53:47 -07:00
|
|
|
# if you update, also bump pythonPackages.libvirt or it will break
|
2014-03-12 00:27:05 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2010-01-27 04:12:35 -08:00
|
|
|
name = "libvirt-${version}";
|
2017-07-20 14:31:04 -07:00
|
|
|
version = "3.5.0";
|
2010-01-27 04:12:35 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-07-01 15:24:05 -07:00
|
|
|
url = "http://libvirt.org/sources/${name}.tar.xz";
|
2017-07-20 14:31:04 -07:00
|
|
|
sha256 = "05mm4xdw6g960rwvc9189nhxpm1vrilnmpl4h4m1lha11pivlqr9";
|
2010-01-27 04:12:35 -08:00
|
|
|
};
|
|
|
|
|
2016-01-04 07:50:34 -08:00
|
|
|
patches = [ ./build-on-bsd.patch ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ makeWrapper pkgconfig ];
|
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
|
2017-06-04 22:50:46 -07:00
|
|
|
libxslt xhtml1 perlPackages.XMLXPath curl libpcap
|
2017-03-23 13:26:37 -07:00
|
|
|
] ++ optionals stdenv.isLinux [
|
2017-03-28 10:13:39 -07:00
|
|
|
libpciaccess devicemapper lvm2 utillinux systemd libnl numad zfs
|
2017-06-04 22:50:46 -07:00
|
|
|
libapparmor libcap_ng numactl xen attr parted
|
2017-03-23 13:26:37 -07:00
|
|
|
] ++ optionals stdenv.isDarwin [
|
2015-12-24 20:34:47 -08:00
|
|
|
libiconv gmp
|
2014-03-12 00:27:05 -07:00
|
|
|
];
|
|
|
|
|
2017-03-23 13:26:37 -07:00
|
|
|
preConfigure = optionalString stdenv.isLinux ''
|
2016-08-22 15:13:49 -07:00
|
|
|
PATH=${stdenv.lib.makeBinPath [ iproute iptables ebtables lvm2 systemd ]}:$PATH
|
2016-07-01 11:12:33 -07:00
|
|
|
substituteInPlace configure \
|
2016-07-01 15:24:05 -07:00
|
|
|
--replace 'as_dummy="/bin:/usr/bin:/usr/sbin"' 'as_dummy="${numad}/bin"'
|
2015-12-24 20:34:47 -08:00
|
|
|
'' + ''
|
|
|
|
PATH=${dnsmasq}/bin:$PATH
|
2015-01-08 01:26:49 -08:00
|
|
|
patchShebangs . # fixes /usr/bin/python references
|
2014-03-12 00:27:05 -07:00
|
|
|
'';
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--localstatedir=/var"
|
2015-12-18 05:07:53 -08:00
|
|
|
"--sysconfdir=/var/lib"
|
2014-10-27 09:34:41 -07:00
|
|
|
"--with-libpcap"
|
2015-12-24 20:34:47 -08:00
|
|
|
"--with-vmware"
|
|
|
|
"--with-vbox"
|
|
|
|
"--with-test"
|
|
|
|
"--with-esx"
|
|
|
|
"--with-remote"
|
2017-03-23 13:26:37 -07:00
|
|
|
] ++ optionals stdenv.isLinux [
|
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-03-25 06:59:01 -07:00
|
|
|
"--with-init-script=systemd+redhat"
|
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"
|
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 = [
|
|
|
|
"localstatedir=$(TMPDIR)/var"
|
2015-12-18 05:07:53 -08:00
|
|
|
"sysconfdir=$(out)/var/lib"
|
2014-03-12 00:27:05 -07:00
|
|
|
];
|
|
|
|
|
|
|
|
postInstall = ''
|
2014-06-16 07:45:08 -07:00
|
|
|
sed -i 's/ON_SHUTDOWN=suspend/ON_SHUTDOWN=''${ON_SHUTDOWN:-suspend}/' $out/libexec/libvirt-guests.sh
|
2014-03-12 00:27:05 -07:00
|
|
|
substituteInPlace $out/libexec/libvirt-guests.sh \
|
2017-03-25 06:59:01 -07:00
|
|
|
--replace "$out/bin" "${gettext}/bin" \
|
|
|
|
--replace "lock/subsys" "lock"
|
2017-07-13 12:24:55 -07:00
|
|
|
sed -e "/gettext\.sh/a \\\n# Added in nixpkgs:\ngettext() { \"${gettext}/bin/gettext\" \"\$@\"; }" \
|
|
|
|
-i "$out/libexec/libvirt-guests.sh"
|
2017-03-23 13:26:37 -07:00
|
|
|
'' + optionalString stdenv.isLinux ''
|
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 \
|
2017-03-23 13:26:37 -07:00
|
|
|
--prefix PATH : ${makeBinPath [ iptables iproute pmutils numad numactl ]}
|
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
|
|
|
|
2012-05-06 15:39:39 -07:00
|
|
|
NIX_CFLAGS_COMPILE = "-fno-stack-protector";
|
2012-04-19 14:40:07 -07:00
|
|
|
|
2017-03-23 13:26:37 -07:00
|
|
|
meta = {
|
2010-01-27 04:12:35 -08:00
|
|
|
homepage = http://libvirt.org/;
|
2014-03-27 06:27:12 -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;
|
2016-03-19 08:33:49 -07:00
|
|
|
maintainers = with maintainers; [ fpletz ];
|
2010-01-27 04:12:35 -08:00
|
|
|
};
|
|
|
|
}
|