2016-01-04 16:50:34 +01:00
|
|
|
{ stdenv, fetchurl, fetchpatch
|
|
|
|
, pkgconfig, makeWrapper
|
2016-11-14 18:49:45 +01:00
|
|
|
, libxml2, gnutls, devicemapper, perl, python2
|
2015-10-03 20:52:03 +02:00
|
|
|
, iproute, iptables, readline, lvm2, utillinux, systemd, libpciaccess, gettext
|
2016-01-04 16:50:34 +01:00
|
|
|
, libtasn1, ebtables, libgcrypt, yajl, pmutils, libcap_ng
|
2015-12-24 20:59:44 +01:00
|
|
|
, dnsmasq, libnl, libpcap, libxslt, xhtml1, numad, numactl, perlPackages
|
2016-05-23 04:03:41 +02:00
|
|
|
, curl, libiconv, gmp, xen, zfs
|
2011-03-14 15:46:41 +01:00
|
|
|
}:
|
2016-04-19 23:53:47 +02:00
|
|
|
# if you update, also bump pythonPackages.libvirt or it will break
|
2014-03-12 08:27:05 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2010-01-27 13:12:35 +01:00
|
|
|
name = "libvirt-${version}";
|
2016-12-19 10:00:41 +01:00
|
|
|
version = "2.5.0";
|
2010-01-27 13:12:35 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-07-02 00:24:05 +02:00
|
|
|
url = "http://libvirt.org/sources/${name}.tar.xz";
|
2016-12-19 10:00:41 +01:00
|
|
|
sha256 = "07nbh6zhaxx5i1s1acnppf8rzkzb2ppgv35jw7grbbnnpzpzz7c1";
|
2010-01-27 13:12:35 +01:00
|
|
|
};
|
|
|
|
|
2016-01-04 16:50:34 +01:00
|
|
|
patches = [ ./build-on-bsd.patch ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ makeWrapper pkgconfig ];
|
2014-03-12 08:27:05 +01:00
|
|
|
buildInputs = [
|
2016-11-14 18:49:45 +01:00
|
|
|
libxml2 gnutls perl python2 readline
|
2016-01-04 16:50:34 +01:00
|
|
|
gettext libtasn1 libgcrypt yajl
|
2015-12-24 11:10:51 +01:00
|
|
|
libxslt xhtml1 perlPackages.XMLXPath curl libpcap
|
2015-12-25 05:34:47 +01:00
|
|
|
] ++ stdenv.lib.optionals stdenv.isLinux [
|
2016-07-12 08:34:46 +02:00
|
|
|
libpciaccess devicemapper lvm2 utillinux systemd libcap_ng
|
2016-07-02 00:24:05 +02:00
|
|
|
libnl numad numactl xen zfs
|
2015-12-25 05:34:47 +01:00
|
|
|
] ++ stdenv.lib.optionals stdenv.isDarwin [
|
|
|
|
libiconv gmp
|
2014-03-12 08:27:05 +01:00
|
|
|
];
|
|
|
|
|
2015-12-25 05:34:47 +01:00
|
|
|
preConfigure = stdenv.lib.optionalString stdenv.isLinux ''
|
2016-08-23 00:13:49 +02:00
|
|
|
PATH=${stdenv.lib.makeBinPath [ iproute iptables ebtables lvm2 systemd ]}:$PATH
|
2016-07-01 20:12:33 +02:00
|
|
|
substituteInPlace configure \
|
2016-07-02 00:24:05 +02:00
|
|
|
--replace 'as_dummy="/bin:/usr/bin:/usr/sbin"' 'as_dummy="${numad}/bin"'
|
2015-12-25 05:34:47 +01:00
|
|
|
'' + ''
|
|
|
|
PATH=${dnsmasq}/bin:$PATH
|
2015-01-08 10:26:49 +01:00
|
|
|
patchShebangs . # fixes /usr/bin/python references
|
2014-03-12 08:27:05 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--localstatedir=/var"
|
2015-12-18 14:07:53 +01:00
|
|
|
"--sysconfdir=/var/lib"
|
2014-10-27 17:34:41 +01:00
|
|
|
"--with-libpcap"
|
2015-12-25 05:34:47 +01:00
|
|
|
"--with-vmware"
|
|
|
|
"--with-vbox"
|
|
|
|
"--with-test"
|
|
|
|
"--with-esx"
|
|
|
|
"--with-remote"
|
|
|
|
] ++ stdenv.lib.optionals stdenv.isLinux [
|
2015-12-15 19:55:39 +01:00
|
|
|
"--with-numad"
|
2015-12-25 05:34:47 +01:00
|
|
|
"--with-macvtap"
|
|
|
|
"--with-virtualport"
|
|
|
|
"--with-init-script=redhat"
|
2016-05-23 04:03:41 +02:00
|
|
|
"--with-storage-zfs"
|
2015-12-25 05:34:47 +01:00
|
|
|
] ++ stdenv.lib.optionals stdenv.isDarwin [
|
|
|
|
"--with-init-script=none"
|
2014-03-12 08:27:05 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
installFlags = [
|
|
|
|
"localstatedir=$(TMPDIR)/var"
|
2015-12-18 14:07:53 +01:00
|
|
|
"sysconfdir=$(out)/var/lib"
|
2014-03-12 08:27:05 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
postInstall = ''
|
2014-06-16 16:45:08 +02:00
|
|
|
sed -i 's/ON_SHUTDOWN=suspend/ON_SHUTDOWN=''${ON_SHUTDOWN:-suspend}/' $out/libexec/libvirt-guests.sh
|
2014-03-12 08:27:05 +01:00
|
|
|
substituteInPlace $out/libexec/libvirt-guests.sh \
|
|
|
|
--replace "$out/bin" "${gettext}/bin"
|
2015-12-25 05:34:47 +01:00
|
|
|
'' + stdenv.lib.optionalString stdenv.isLinux ''
|
2014-03-12 08:27:05 +01:00
|
|
|
wrapProgram $out/sbin/libvirtd \
|
2016-08-23 00:13:49 +02:00
|
|
|
--prefix PATH : ${stdenv.lib.makeBinPath [ iptables iproute pmutils numad numactl ]}
|
2014-03-12 08:27:05 +01:00
|
|
|
'';
|
2011-02-25 16:56:10 +01:00
|
|
|
|
2012-04-19 23:40:07 +02:00
|
|
|
enableParallelBuilding = true;
|
2014-03-12 08:27:05 +01:00
|
|
|
|
2012-05-07 00:39:39 +02:00
|
|
|
NIX_CFLAGS_COMPILE = "-fno-stack-protector";
|
2012-04-19 23:40:07 +02:00
|
|
|
|
2014-03-12 08:27:05 +01:00
|
|
|
meta = with stdenv.lib; {
|
2010-01-27 13:12:35 +01:00
|
|
|
homepage = http://libvirt.org/;
|
2014-03-27 14:27:12 +01:00
|
|
|
repositories.git = git://libvirt.org/libvirt.git;
|
2014-03-12 08:27:05 +01:00
|
|
|
description = ''
|
|
|
|
A toolkit to interact with the virtualization capabilities of recent
|
|
|
|
versions of Linux (and other OSes)
|
|
|
|
'';
|
|
|
|
license = licenses.lgpl2Plus;
|
2015-12-25 05:34:47 +01:00
|
|
|
platforms = platforms.unix;
|
2016-03-19 16:33:49 +01:00
|
|
|
maintainers = with maintainers; [ fpletz ];
|
2010-01-27 13:12:35 +01:00
|
|
|
};
|
|
|
|
}
|