* libvirt: use /var and set the correct paths to ip/iptables.

svn path=/nixpkgs/trunk/; revision=26091
This commit is contained in:
Eelco Dolstra 2011-02-24 13:36:18 +00:00
parent 76b07fbc18
commit 6bab14437c

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, libxml2, gnutls, devicemapper, perl, python }: { stdenv, fetchurl, libxml2, gnutls, devicemapper, perl, python, iproute, iptables }:
let version = "0.8.8"; in let version = "0.8.8"; in
@ -10,13 +10,18 @@ stdenv.mkDerivation {
sha256 = "04z1757qpi3ssnjv5h2qnw1sds2m50yxk67cbdam6w4i50vyl2h3"; sha256 = "04z1757qpi3ssnjv5h2qnw1sds2m50yxk67cbdam6w4i50vyl2h3";
}; };
buildInputs = [ libxml2 gnutls devicemapper perl python ]; buildInputs = [ libxml2 gnutls devicemapper perl python iproute iptables ];
configureFlags =
''
--localstatedir=/var
IP_PATH=${iproute}/sbin/ip
IPTABLES_PATH=${iptables}/sbin/iptables
IP6TABLES_PATH=${iptables}/sbin/ip6tables
'';
installFlags = "localstatedir=$(TMPDIR)/var";
# xen currently disabled in nixpkgs
configureFlags = ''
--without-xen
'';
meta = { meta = {
homepage = http://libvirt.org/; homepage = http://libvirt.org/;
description = "A toolkit to interact with the virtualization capabilities of recent versions of Linux (and other OSes)."; description = "A toolkit to interact with the virtualization capabilities of recent versions of Linux (and other OSes).";