nixpkgs/pkgs/development/libraries/aalib/default.nix
Lluís Batlle i Rossell 50b3cc05c7 Updating the config.guess of aalib, which did not know about the fuloong mips64.
svn path=/nixpkgs/branches/stdenv-updates/; revision=23577
2010-09-01 08:34:53 +00:00

19 lines
428 B
Nix

{stdenv, fetchurl, ncurses, automake}:
stdenv.mkDerivation {
name = "aalib-1.4rc4";
builder = ./builder.sh;
src = fetchurl {
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;
}