summary refs log tree commit diff
path: root/pkgs/development/libraries/aalib/default.nix
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-09-01 08:34:53 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-09-01 08:34:53 +0000
commit50b3cc05c7dc8ce44be2e37c24b663ef41dd805e (patch)
tree6ffb57116ba9963a71dc81977b0201a0fc6d8b5f /pkgs/development/libraries/aalib/default.nix
parentccf8be72c625eee704b68c25364be3eaf7818418 (diff)
downloadnixpkgs-50b3cc05c7dc8ce44be2e37c24b663ef41dd805e.tar
nixpkgs-50b3cc05c7dc8ce44be2e37c24b663ef41dd805e.tar.gz
nixpkgs-50b3cc05c7dc8ce44be2e37c24b663ef41dd805e.tar.bz2
nixpkgs-50b3cc05c7dc8ce44be2e37c24b663ef41dd805e.tar.lz
nixpkgs-50b3cc05c7dc8ce44be2e37c24b663ef41dd805e.tar.xz
nixpkgs-50b3cc05c7dc8ce44be2e37c24b663ef41dd805e.tar.zst
nixpkgs-50b3cc05c7dc8ce44be2e37c24b663ef41dd805e.zip
Updating the config.guess of aalib, which did not know about the fuloong mips64.
svn path=/nixpkgs/branches/stdenv-updates/; revision=23577
Diffstat (limited to 'pkgs/development/libraries/aalib/default.nix')
-rw-r--r--pkgs/development/libraries/aalib/default.nix8
1 files changed, 7 insertions, 1 deletions
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;
 }