38ec761dcf
svn path=/nixpkgs/trunk/; revision=33998
47 lines
1.4 KiB
Nix
47 lines
1.4 KiB
Nix
{ stdenv, fetchurl, pkgconfig, libxml2, gnutls, devicemapper, perl, python
|
|
, iproute, iptables, readline, lvm2, utillinux, udev, libpciaccess, gettext
|
|
, libtasn1, ebtables, libgcrypt, yajl
|
|
}:
|
|
|
|
let version = "0.9.11"; in
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libvirt-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://libvirt.org/sources/libvirt-${version}.tar.gz";
|
|
sha256 = "0qk0fsc5rxwwjp7801vdanmw61p89xqiy6q279i0kqc3bx1zx66f";
|
|
};
|
|
|
|
buildInputs =
|
|
[ pkgconfig libxml2 gnutls devicemapper perl python readline lvm2
|
|
utillinux udev libpciaccess gettext libtasn1 libgcrypt yajl
|
|
];
|
|
|
|
preConfigure =
|
|
''
|
|
PATH=${iproute}/sbin:${iptables}/sbin:${ebtables}/sbin:${lvm2}/sbin:${udev}/sbin:$PATH
|
|
patchShebangs . # fixes /usr/bin/python references
|
|
'';
|
|
|
|
configureFlags = "--localstatedir=/var --sysconfdir=/etc --with-init-script=redhat --without-macvtap";
|
|
|
|
installFlags = "localstatedir=$(TMPDIR)/var sysconfdir=$(out)/etc";
|
|
|
|
postInstall =
|
|
''
|
|
substituteInPlace $out/etc/rc.d/init.d/libvirt-guests \
|
|
--replace "$out/bin" "${gettext}/bin"
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
NIX_CFLAGS_COMPILE = "-fno-stack-protector";
|
|
|
|
meta = {
|
|
homepage = http://libvirt.org/;
|
|
description = "A toolkit to interact with the virtualization capabilities of recent versions of Linux (and other OSes)";
|
|
license = "LGPLv2+";
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|