Fixing libxmi on x86_64.

svn path=/nixpkgs/trunk/; revision=14903
This commit is contained in:
Lluís Batlle i Rossell 2009-04-06 17:11:15 +00:00
parent c22abb7c2a
commit 80f1103831
2 changed files with 5 additions and 2 deletions

View file

@ -1,4 +1,4 @@
{stdenv, fetchurl}:
{stdenv, fetchurl, libtool}:
stdenv.mkDerivation {
name = "libxmi-1.2";
@ -7,6 +7,9 @@ stdenv.mkDerivation {
url = mirror://gnu/libxmi/libxmi-1.2.tar.gz;
sha256 = "03d4ikh29l38rl1wavb0icw7m5pp7yilnv7bb2k8qij1dinsymlx";
};
# For the x86_64 linux arch to be recognized by 'configure'
preConfigure = "cp ${libtool}/share/libtool/config.sub .";
meta = {
description = "Library for rasterizing 2-D vector graphics";

View file

@ -3601,7 +3601,7 @@ let
};
libxmi = import ../development/libraries/libxmi {
inherit fetchurl stdenv;
inherit fetchurl stdenv libtool;
};
libxml2 = import ../development/libraries/libxml2 {