2011-02-25 05:24:41 -08:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libxml2, gnutls, devicemapper, perl, python
|
2011-03-14 07:46:41 -07:00
|
|
|
, iproute, iptables, readline, lvm2, utillinux, udev, libpciaccess, gettext
|
2011-05-11 08:02:53 -07:00
|
|
|
, libtasn1, ebtables, libgcrypt
|
2011-03-14 07:46:41 -07:00
|
|
|
}:
|
2010-01-27 04:12:35 -08:00
|
|
|
|
2011-05-09 02:24:18 -07:00
|
|
|
let version = "0.9.1"; in
|
2010-01-27 04:12:35 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "libvirt-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://libvirt.org/sources/libvirt-${version}.tar.gz";
|
2011-05-09 02:24:18 -07:00
|
|
|
sha256 = "0avv3c95l95rpk5n5b6hwir52px5k2v5rvn3x82ak948n4xl5cq2";
|
2010-01-27 04:12:35 -08:00
|
|
|
};
|
|
|
|
|
2011-02-25 05:24:41 -08:00
|
|
|
buildInputs =
|
|
|
|
[ pkgconfig libxml2 gnutls devicemapper perl python readline lvm2
|
2011-05-11 08:02:53 -07:00
|
|
|
utillinux udev libpciaccess gettext libtasn1 libgcrypt
|
2011-02-25 05:24:41 -08:00
|
|
|
];
|
2011-02-24 05:36:18 -08:00
|
|
|
|
2011-02-25 05:24:41 -08:00
|
|
|
preConfigure =
|
2011-02-24 05:36:18 -08:00
|
|
|
''
|
2011-03-31 06:20:49 -07:00
|
|
|
PATH=${iproute}/sbin:${iptables}/sbin:${ebtables}/sbin:${lvm2}/sbin:${udev}/sbin:$PATH
|
2011-02-24 05:36:18 -08:00
|
|
|
'';
|
|
|
|
|
2011-03-31 15:09:07 -07:00
|
|
|
configureFlags = "--localstatedir=/var --sysconfdir=/etc --with-init-script=redhat";
|
2011-02-25 05:24:41 -08:00
|
|
|
|
2011-03-31 15:09:07 -07:00
|
|
|
installFlags = "localstatedir=$(TMPDIR)/var sysconfdir=$(out)/etc";
|
2010-01-27 04:12:35 -08:00
|
|
|
|
2011-02-25 07:56:10 -08:00
|
|
|
postInstall =
|
|
|
|
''
|
|
|
|
substituteInPlace $out/etc/rc.d/init.d/libvirt-guests \
|
|
|
|
--replace "$out/bin" "${gettext}/bin"
|
|
|
|
'';
|
|
|
|
|
2010-01-27 04:12:35 -08:00
|
|
|
meta = {
|
|
|
|
homepage = http://libvirt.org/;
|
2011-03-14 07:46:41 -07:00
|
|
|
description = "A toolkit to interact with the virtualization capabilities of recent versions of Linux (and other OSes)";
|
2010-01-27 04:12:35 -08:00
|
|
|
license = "LGPLv2+";
|
2011-02-24 03:59:30 -08:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2010-01-27 04:12:35 -08:00
|
|
|
};
|
|
|
|
}
|