mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
28ac782583
There are many more packages to fix, this is just a start. Rules: * Don't repeat the package name (not always that easy...) * Start with capital letter * Don't end with full stop * Don't start with "The ..." or "A ..." I've also added descriptions to some packages and rewritten others.
23 lines
493 B
Nix
23 lines
493 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;
|
|
|
|
meta = {
|
|
description = "ASCII art graphics library";
|
|
};
|
|
}
|