mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Fixing libxmi on x86_64.
svn path=/nixpkgs/trunk/; revision=14903
This commit is contained in:
parent
c22abb7c2a
commit
80f1103831
2 changed files with 5 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{stdenv, fetchurl}:
|
||||
{stdenv, fetchurl, libtool}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "libxmi-1.2";
|
||||
|
@ -8,6 +8,9 @@ stdenv.mkDerivation {
|
|||
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";
|
||||
homepage = http://www.gnu.org/software/libxmi/;
|
||||
|
|
|
@ -3601,7 +3601,7 @@ let
|
|||
};
|
||||
|
||||
libxmi = import ../development/libraries/libxmi {
|
||||
inherit fetchurl stdenv;
|
||||
inherit fetchurl stdenv libtool;
|
||||
};
|
||||
|
||||
libxml2 = import ../development/libraries/libxml2 {
|
||||
|
|
Loading…
Reference in a new issue