db144edb60
svn path=/nixpkgs/branches/modular-python/; revision=26693
43 lines
1.2 KiB
Nix
43 lines
1.2 KiB
Nix
{ stdenv, fetchurl, pkgconfig, libxml2, gnutls, devicemapper, perl, python
|
|
, iproute, iptables, readline, lvm2, utillinux, udev, libpciaccess, gettext
|
|
, libtasn1, ebtables
|
|
}:
|
|
|
|
let version = "0.9.0"; in
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libvirt-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://libvirt.org/sources/libvirt-${version}.tar.gz";
|
|
sha256 = "0rlhn08zgj9v0jrh0pq0hfdw6vmw98fg3c573k8mpnwm2byc3gby";
|
|
};
|
|
|
|
buildInputs =
|
|
[ pkgconfig libxml2 gnutls devicemapper perl python readline lvm2
|
|
utillinux udev libpciaccess gettext libtasn1
|
|
];
|
|
|
|
preConfigure =
|
|
''
|
|
PATH=${iproute}/sbin:${iptables}/sbin:${ebtables}/sbin:${lvm2}/sbin:${udev}/sbin:$PATH
|
|
'';
|
|
|
|
configureFlags = "--localstatedir=/var --sysconfdir=/etc --with-init-script=redhat";
|
|
|
|
installFlags = "localstatedir=$(TMPDIR)/var sysconfdir=$(out)/etc";
|
|
|
|
postInstall =
|
|
''
|
|
substituteInPlace $out/etc/rc.d/init.d/libvirt-guests \
|
|
--replace "$out/bin" "${gettext}/bin"
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|