nixpkgs/pkgs/development/libraries/libvirt/default.nix

94 lines
2.7 KiB
Nix
Raw Normal View History

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