From e5fcf7ebe9f60ef31f6c2dea2b4724c5a47f4497 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 14 Mar 2011 14:46:41 +0000 Subject: [PATCH] * Fix the libvirt build on x86_64-linux (http://hydra.nixos.org/build/959072). svn path=/nixpkgs/trunk/; revision=26301 --- pkgs/development/libraries/libvirt/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/libvirt/default.nix b/pkgs/development/libraries/libvirt/default.nix index e5429bf0995..0e390c06d5b 100644 --- a/pkgs/development/libraries/libvirt/default.nix +++ b/pkgs/development/libraries/libvirt/default.nix @@ -1,5 +1,7 @@ { stdenv, fetchurl, pkgconfig, libxml2, gnutls, devicemapper, perl, python -, iproute, iptables, readline, lvm2, utillinux, udev, libpciaccess, gettext }: +, iproute, iptables, readline, lvm2, utillinux, udev, libpciaccess, gettext +, libtasn1 +}: let version = "0.8.8"; in @@ -13,7 +15,7 @@ stdenv.mkDerivation { buildInputs = [ pkgconfig libxml2 gnutls devicemapper perl python readline lvm2 - utillinux udev libpciaccess gettext + utillinux udev libpciaccess gettext libtasn1 ]; preConfigure = @@ -33,7 +35,7 @@ stdenv.mkDerivation { meta = { 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)"; license = "LGPLv2+"; platforms = stdenv.lib.platforms.linux; };