From 50b3cc05c7dc8ce44be2e37c24b663ef41dd805e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Wed, 1 Sep 2010 08:34:53 +0000 Subject: [PATCH] Updating the config.guess of aalib, which did not know about the fuloong mips64. svn path=/nixpkgs/branches/stdenv-updates/; revision=23577 --- pkgs/development/libraries/aalib/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/aalib/default.nix b/pkgs/development/libraries/aalib/default.nix index d3230c1fedc..2da006a6ceb 100644 --- a/pkgs/development/libraries/aalib/default.nix +++ b/pkgs/development/libraries/aalib/default.nix @@ -1,4 +1,4 @@ -{stdenv, fetchurl, ncurses}: +{stdenv, fetchurl, ncurses, automake}: stdenv.mkDerivation { name = "aalib-1.4rc4"; @@ -7,6 +7,12 @@ stdenv.mkDerivation { url = mirror://sourceforge/aa-project/aalib-1.4rc4.tar.gz; md5 = "d5aa8e9eae07b7441298b5c30490f6a6"; }; + + # The fuloong2f is not supported by aalib still + preConfigure = '' + cp ${automake}/share/automake*/config.{sub,guess} . + ''; + buildInputs = [ncurses]; inherit ncurses; }