2010-09-01 09:34:53 +01:00
|
|
|
{stdenv, fetchurl, ncurses, automake}:
|
2005-08-24 15:26:32 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2013-12-18 11:30:58 +00:00
|
|
|
name = "aalib-1.4rc5";
|
2013-12-18 11:33:12 +00:00
|
|
|
|
2005-08-24 15:26:32 +01:00
|
|
|
src = fetchurl {
|
2013-12-18 11:30:58 +00:00
|
|
|
url = mirror://sourceforge/aa-project/aalib-1.4rc5.tar.gz;
|
|
|
|
sha256 = "1vkh19gb76agvh4h87ysbrgy82hrw88lnsvhynjf4vng629dmpgv";
|
2005-08-24 15:26:32 +01:00
|
|
|
};
|
2010-09-01 09:34:53 +01:00
|
|
|
|
2015-10-20 23:20:52 +01:00
|
|
|
outputs = [ "dev" "out" "bin" "doc" ];
|
|
|
|
setOutputFlags = false; # Doesn't support all the flags
|
|
|
|
|
|
|
|
patches = stdenv.lib.optionals stdenv.isDarwin [ ./darwin.patch ];
|
|
|
|
|
2010-09-01 09:34:53 +01:00
|
|
|
# The fuloong2f is not supported by aalib still
|
|
|
|
preConfigure = ''
|
|
|
|
cp ${automake}/share/automake*/config.{sub,guess} .
|
2015-10-20 23:20:52 +01:00
|
|
|
configureFlagsArray+=(
|
|
|
|
"--bindir=$bin/bin"
|
|
|
|
"--includedir=$dev/include"
|
|
|
|
"--libdir=$out/lib"
|
|
|
|
)
|
2010-09-01 09:34:53 +01:00
|
|
|
'';
|
|
|
|
|
2013-12-18 11:33:12 +00:00
|
|
|
buildInputs = [ ncurses ];
|
|
|
|
|
2016-04-16 18:41:10 +01:00
|
|
|
configureFlags = "--without-x --with-ncurses=${ncurses.dev}";
|
2013-10-05 15:22:46 +01:00
|
|
|
|
2015-10-20 23:20:52 +01:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $dev/bin
|
|
|
|
mv $bin/bin/aalib-config $dev/bin/aalib-config
|
2016-02-01 17:16:50 +00:00
|
|
|
substituteInPlace $out/lib/libaa.la --replace "${ncurses.dev}/lib" "${ncurses.out}/lib"
|
2015-10-20 23:20:52 +01:00
|
|
|
'';
|
2015-04-01 21:29:38 +01:00
|
|
|
|
2013-10-05 15:22:46 +01:00
|
|
|
meta = {
|
|
|
|
description = "ASCII art graphics library";
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2013-10-05 15:22:46 +01:00
|
|
|
};
|
2005-08-24 15:26:32 +01:00
|
|
|
}
|