nixpkgs/pkgs/development/libraries/libvirt/default.nix

51 lines
1.6 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, libxml2, gnutls, devicemapper, perl, python
2013-07-24 12:41:20 +00:00
, iproute, iptables, readline, lvm2, utillinux, udev, libpciaccess, gettext
2013-09-14 08:35:31 +00:00
, libtasn1, ebtables, libgcrypt, yajl, makeWrapper, pmutils, libcap_ng
, dnsmasq
}:
2014-03-11 17:27:09 +00:00
let version = "1.2.2"; in
stdenv.mkDerivation {
name = "libvirt-${version}";
src = fetchurl {
url = "http://libvirt.org/sources/libvirt-${version}.tar.gz";
2014-03-11 17:27:09 +00:00
sha256 = "1hxvgh2fp2fk3wva7fnbz2pk6g5217wrmf9xwikiphn50zipg0x4";
};
buildInputs =
[ pkgconfig libxml2 gnutls devicemapper perl python readline lvm2
2013-07-24 12:41:20 +00:00
utillinux udev libpciaccess gettext libtasn1 libgcrypt yajl makeWrapper
2013-09-14 08:35:31 +00:00
libcap_ng
];
preConfigure =
''
PATH=${iproute}/sbin:${iptables}/sbin:${ebtables}/sbin:${lvm2}/sbin:${udev}/sbin:${dnsmasq}/bin:$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 =
''
2013-03-28 17:04:49 +00:00
substituteInPlace $out/libexec/libvirt-guests.sh \
--replace "$out/bin" "${gettext}/bin"
2013-07-24 12:41:20 +00:00
wrapProgram $out/sbin/libvirtd \
--prefix PATH : ${iptables}/sbin:${iproute}/sbin:${pmutils}/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;
};
}