2007-06-29 00:14:25 +02:00
|
|
|
{stdenv, fetchurl, unicode ? true}:
|
2004-03-05 11:13:23 +01:00
|
|
|
|
2004-03-29 19:23:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2006-12-26 00:28:35 +01:00
|
|
|
name = "ncurses-5.6";
|
2004-03-05 11:13:23 +01:00
|
|
|
src = fetchurl {
|
2007-08-27 15:42:00 +02:00
|
|
|
url = mirror://gnu/ncurses/ncurses-5.6.tar.gz;
|
2006-12-26 00:28:35 +01:00
|
|
|
md5 = "b6593abe1089d6aab1551c105c9300e3";
|
2004-03-05 11:13:23 +01:00
|
|
|
};
|
2007-06-29 00:14:25 +02:00
|
|
|
configureFlags="--with-shared --includedir=\${out}/include"+(if unicode then " --enable-widec " else " ") +" --without-debug";
|
2008-02-22 04:06:12 +01:00
|
|
|
preBuild = ''sed -e "s@\([[:space:]]\)sh @\1''${SHELL} @" -i */Makefile Makefile'';
|
2007-06-29 00:14:25 +02:00
|
|
|
postInstall= if unicode then "
|
2007-06-26 13:34:05 +02:00
|
|
|
chmod -v 644 $out/lib/libncurses++w.a
|
|
|
|
for lib in curses ncurses form panel menu; do
|
|
|
|
rm -vf $out/lib/lib\${lib}.so
|
|
|
|
echo \"INPUT(-l\${lib}w)\" > $out/lib/lib\${lib}.so
|
|
|
|
ln -svf lib\${lib}w.a $out/lib/lib\${lib}.a
|
2007-06-28 11:53:12 +02:00
|
|
|
ln -svf lib\${lib}w.so.5 $out/lib/lib\${lib}.so.5
|
2007-06-26 13:34:05 +02:00
|
|
|
done;
|
2007-06-29 00:14:25 +02:00
|
|
|
" else "";
|
2004-03-05 11:13:23 +01:00
|
|
|
}
|