e5fcf7ebe9
(http://hydra.nixos.org/build/959072). svn path=/nixpkgs/trunk/; revision=26301
43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
{ stdenv, fetchurl, pkgconfig, libxml2, gnutls, devicemapper, perl, python
|
|
, iproute, iptables, readline, lvm2, utillinux, udev, libpciaccess, gettext
|
|
, libtasn1
|
|
}:
|
|
|
|
let version = "0.8.8"; in
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libvirt-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://libvirt.org/sources/libvirt-${version}.tar.gz";
|
|
sha256 = "04z1757qpi3ssnjv5h2qnw1sds2m50yxk67cbdam6w4i50vyl2h3";
|
|
};
|
|
|
|
buildInputs =
|
|
[ pkgconfig libxml2 gnutls devicemapper perl python readline lvm2
|
|
utillinux udev libpciaccess gettext libtasn1
|
|
];
|
|
|
|
preConfigure =
|
|
''
|
|
PATH=${iproute}/sbin:${iptables}/sbin:${lvm2}/sbin:${udev}/sbin:$PATH
|
|
'';
|
|
|
|
configureFlags = "--localstatedir=/var --with-init-script=redhat";
|
|
|
|
installFlags = "localstatedir=$(TMPDIR)/var";
|
|
|
|
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;
|
|
};
|
|
}
|