mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 08:31:59 +00:00
23 lines
516 B
Nix
23 lines
516 B
Nix
{stdenv, fetchurl, ncurses, automake}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "aalib-1.4rc5";
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/aa-project/aalib-1.4rc5.tar.gz;
|
|
sha256 = "1vkh19gb76agvh4h87ysbrgy82hrw88lnsvhynjf4vng629dmpgv";
|
|
};
|
|
|
|
# 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";
|
|
};
|
|
}
|