2007-06-29 00:14:25 +02:00
|
|
|
{stdenv, fetchurl, unicode ? true}:
|
2004-03-05 11:13:23 +01:00
|
|
|
|
2011-01-17 10:16:30 +01:00
|
|
|
let
|
|
|
|
/* C++ bindings fail to build on `i386-pc-solaris2.11' with GCC 3.4.3:
|
|
|
|
<http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6395191>.
|
|
|
|
It seems that it could be worked around by #including <wchar.h> in the
|
|
|
|
right place, according to
|
|
|
|
<http://mail.python.org/pipermail/python-bugs-list/2006-September/035362.html>,
|
|
|
|
but this is left as an exercise to the reader.
|
|
|
|
So disable them for now. */
|
|
|
|
cxx = stdenv.system != "i386-sunos";
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation (rec {
|
2008-11-04 10:03:05 +01:00
|
|
|
name = "ncurses-5.7";
|
2011-01-17 10:16:30 +01:00
|
|
|
|
2004-03-05 11:13:23 +01:00
|
|
|
src = fetchurl {
|
2008-11-04 10:03:05 +01:00
|
|
|
url = "mirror://gnu/ncurses/${name}.tar.gz";
|
|
|
|
sha256 = "1x4q6kma6zgg438llbgiac3kik7j2lln9v97jdffv3fyqyjxx6qa";
|
2004-03-05 11:13:23 +01:00
|
|
|
};
|
2010-10-12 21:39:30 +02:00
|
|
|
|
2011-01-17 10:16:30 +01:00
|
|
|
crossAttrs = {
|
2010-10-12 21:39:30 +02:00
|
|
|
patches = [ ./wint_t.patch ];
|
|
|
|
};
|
2011-01-17 10:16:30 +01:00
|
|
|
|
2009-01-19 12:01:20 +01:00
|
|
|
configureFlags = ''
|
|
|
|
--with-shared --includedir=''${out}/include --without-debug
|
2011-01-17 10:16:30 +01:00
|
|
|
${if unicode then "--enable-widec" else ""}${if cxx then "" else "--without-cxx-binding"}
|
2009-01-19 12:01:20 +01:00
|
|
|
'';
|
2009-11-20 17:38:01 +01:00
|
|
|
|
2009-11-22 23:48:43 +01:00
|
|
|
selfBuildNativeInput = true;
|
2010-07-20 15:14:03 +02:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2008-02-22 04:06:12 +01:00
|
|
|
preBuild = ''sed -e "s@\([[:space:]]\)sh @\1''${SHELL} @" -i */Makefile Makefile'';
|
2008-08-25 17:29:04 +02:00
|
|
|
|
|
|
|
# When building a wide-character (Unicode) build, create backward
|
|
|
|
# compatibility links from the the "normal" libraries to the
|
|
|
|
# wide-character libraries (e.g. libncurses.so to libncursesw.so).
|
2009-01-19 12:01:20 +01:00
|
|
|
postInstall = if unicode then ''
|
2011-01-21 00:32:09 +01:00
|
|
|
${if cxx then "chmod 644 $out/lib/libncurses++w.a" else ""}
|
2007-06-26 13:34:05 +02:00
|
|
|
for lib in curses ncurses form panel menu; do
|
2009-01-19 12:01:20 +01:00
|
|
|
if test -e $out/lib/lib''${lib}w.a; then
|
2010-01-17 23:08:22 +01:00
|
|
|
rm -f $out/lib/lib$lib.so
|
2009-01-19 12:01:20 +01:00
|
|
|
echo "INPUT(-l''${lib}w)" > $out/lib/lib$lib.so
|
|
|
|
ln -svf lib''${lib}w.a $out/lib/lib$lib.a
|
|
|
|
ln -svf lib''${lib}w.so.5 $out/lib/lib$lib.so.5
|
2008-08-25 17:29:04 +02:00
|
|
|
fi
|
2007-06-26 13:34:05 +02:00
|
|
|
done;
|
2009-01-19 12:01:20 +01:00
|
|
|
'' else "";
|
2008-11-04 10:03:05 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "GNU Ncurses, a free software emulation of curses in SVR4 and more";
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
The Ncurses (new curses) library is a free software emulation of
|
|
|
|
curses in System V Release 4.0, and more. It uses Terminfo
|
|
|
|
format, supports pads and color and multiple highlights and
|
|
|
|
forms characters and function-key mapping, and has all the other
|
|
|
|
SYSV-curses enhancements over BSD Curses.
|
|
|
|
|
|
|
|
The ncurses code was developed under GNU/Linux. It has been in
|
|
|
|
use for some time with OpenBSD as the system curses library, and
|
|
|
|
on FreeBSD and NetBSD as an external package. It should port
|
|
|
|
easily to any ANSI/POSIX-conforming UNIX. It has even been
|
|
|
|
ported to OS/2 Warp!
|
|
|
|
'';
|
|
|
|
|
|
|
|
homepage = http://www.gnu.org/software/ncurses/;
|
|
|
|
|
|
|
|
license = "X11";
|
2011-01-17 10:16:30 +01:00
|
|
|
|
|
|
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
2008-11-04 10:03:05 +01:00
|
|
|
};
|
2010-03-16 11:52:12 +01:00
|
|
|
} // ( if stdenv.isDarwin then { postFixup = "rm $out/lib/*.so"; } else { } ) )
|