2016-01-04 15:50:34 +00:00
|
|
|
{ stdenv, fetchurl, fetchpatch
|
|
|
|
, pkgconfig, makeWrapper
|
|
|
|
, libxml2, gnutls, devicemapper, perl, python
|
2015-10-03 18:52:03 +00:00
|
|
|
, iproute, iptables, readline, lvm2, utillinux, systemd, libpciaccess, gettext
|
2016-01-04 15:50:34 +00:00
|
|
|
, libtasn1, ebtables, libgcrypt, yajl, pmutils, libcap_ng
|
2015-12-24 19:59:44 +00:00
|
|
|
, dnsmasq, libnl, libpcap, libxslt, xhtml1, numad, numactl, perlPackages
|
2015-12-24 10:57:52 +00:00
|
|
|
, curl, libiconv, gmp, xen
|
2011-03-14 14:46:41 +00:00
|
|
|
}:
|
2010-01-27 12:12:35 +00:00
|
|
|
|
2014-03-12 07:27:05 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2010-01-27 12:12:35 +00:00
|
|
|
name = "libvirt-${version}";
|
2016-04-12 04:11:41 +00:00
|
|
|
version = "1.3.3";
|
2010-01-27 12:12:35 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-03-12 07:27:05 +00:00
|
|
|
url = "http://libvirt.org/sources/${name}.tar.gz";
|
2016-04-12 04:11:41 +00:00
|
|
|
sha256 = "13w56fhspf7ygr3v0jhh44g25xbcx5vmrprzcy9cajsppa6knq4r";
|
2010-01-27 12:12:35 +00:00
|
|
|
};
|
|
|
|
|
2016-01-04 15:50:34 +00:00
|
|
|
patches = [ ./build-on-bsd.patch ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ makeWrapper pkgconfig ];
|
2014-03-12 07:27:05 +00:00
|
|
|
buildInputs = [
|
2016-01-04 15:50:34 +00:00
|
|
|
libxml2 gnutls perl python readline
|
|
|
|
gettext libtasn1 libgcrypt yajl
|
2015-12-24 10:10:51 +00:00
|
|
|
libxslt xhtml1 perlPackages.XMLXPath curl libpcap
|
2015-12-25 04:34:47 +00:00
|
|
|
] ++ stdenv.lib.optionals stdenv.isLinux [
|
2015-12-31 08:47:26 +00:00
|
|
|
libpciaccess devicemapper lvm2 utillinux systemd.udev.lib libcap_ng
|
2015-12-24 10:57:52 +00:00
|
|
|
libnl numad numactl xen
|
2015-12-25 04:34:47 +00:00
|
|
|
] ++ stdenv.lib.optionals stdenv.isDarwin [
|
|
|
|
libiconv gmp
|
2014-03-12 07:27:05 +00:00
|
|
|
];
|
|
|
|
|
2015-12-25 04:34:47 +00:00
|
|
|
preConfigure = stdenv.lib.optionalString stdenv.isLinux ''
|
2015-12-31 08:47:26 +00:00
|
|
|
PATH=${iproute}/sbin:${iptables}/sbin:${ebtables}/sbin:${lvm2}/sbin:${systemd.udev.bin}/bin:$PATH
|
2015-12-15 18:55:39 +00:00
|
|
|
substituteInPlace configure --replace 'as_dummy="/bin:/usr/bin:/usr/sbin"' 'as_dummy="${numad}/bin"'
|
2015-12-25 04:34:47 +00:00
|
|
|
'' + ''
|
|
|
|
PATH=${dnsmasq}/bin:$PATH
|
2015-01-08 09:26:49 +00:00
|
|
|
patchShebangs . # fixes /usr/bin/python references
|
2014-03-12 07:27:05 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--localstatedir=/var"
|
2015-12-18 13:07:53 +00:00
|
|
|
"--sysconfdir=/var/lib"
|
2014-10-27 16:34:41 +00:00
|
|
|
"--with-libpcap"
|
2015-12-25 04:34:47 +00:00
|
|
|
"--with-vmware"
|
|
|
|
"--with-vbox"
|
|
|
|
"--with-test"
|
|
|
|
"--with-esx"
|
|
|
|
"--with-remote"
|
|
|
|
] ++ stdenv.lib.optionals stdenv.isLinux [
|
2015-12-15 18:55:39 +00:00
|
|
|
"--with-numad"
|
2015-12-25 04:34:47 +00:00
|
|
|
"--with-macvtap"
|
|
|
|
"--with-virtualport"
|
|
|
|
"--with-init-script=redhat"
|
|
|
|
] ++ stdenv.lib.optionals stdenv.isDarwin [
|
|
|
|
"--with-init-script=none"
|
2014-03-12 07:27:05 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
installFlags = [
|
|
|
|
"localstatedir=$(TMPDIR)/var"
|
2015-12-18 13:07:53 +00:00
|
|
|
"sysconfdir=$(out)/var/lib"
|
2014-03-12 07:27:05 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
postInstall = ''
|
2014-06-16 14:45:08 +00:00
|
|
|
sed -i 's/ON_SHUTDOWN=suspend/ON_SHUTDOWN=''${ON_SHUTDOWN:-suspend}/' $out/libexec/libvirt-guests.sh
|
2014-03-12 07:27:05 +00:00
|
|
|
substituteInPlace $out/libexec/libvirt-guests.sh \
|
|
|
|
--replace "$out/bin" "${gettext}/bin"
|
2015-12-25 04:34:47 +00:00
|
|
|
'' + stdenv.lib.optionalString stdenv.isLinux ''
|
2014-03-12 07:27:05 +00:00
|
|
|
wrapProgram $out/sbin/libvirtd \
|
2015-12-15 18:55:39 +00:00
|
|
|
--prefix PATH : ${iptables}/sbin:${iproute}/sbin:${pmutils}/bin:${numad}/bin:${numactl}/bin
|
2014-03-12 07:27:05 +00:00
|
|
|
'';
|
2011-02-25 15:56:10 +00:00
|
|
|
|
2012-04-19 21:40:07 +00:00
|
|
|
enableParallelBuilding = true;
|
2014-03-12 07:27:05 +00:00
|
|
|
|
2012-05-06 22:39:39 +00:00
|
|
|
NIX_CFLAGS_COMPILE = "-fno-stack-protector";
|
2012-04-19 21:40:07 +00:00
|
|
|
|
2014-03-12 07:27:05 +00:00
|
|
|
meta = with stdenv.lib; {
|
2010-01-27 12:12:35 +00:00
|
|
|
homepage = http://libvirt.org/;
|
2014-03-27 13:27:12 +00: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;
|
2016-03-19 15:33:49 +00:00
|
|
|
maintainers = with maintainers; [ fpletz ];
|
2010-01-27 12:12:35 +00:00
|
|
|
};
|
|
|
|
}
|