Updating the config.guess of aalib, which did not know about the fuloong mips64.

svn path=/nixpkgs/branches/stdenv-updates/; revision=23577
This commit is contained in:
Lluís Batlle i Rossell 2010-09-01 08:34:53 +00:00
parent ccf8be72c6
commit 50b3cc05c7

View File

@ -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;
}