2007-06-29 00:14:25 +02:00
|
|
|
{stdenv, fetchurl, unicode ? true}:
|
2004-03-05 11:13:23 +01:00
|
|
|
|
2010-03-16 11:37:41 +01:00
|
|
|
stdenv.mkDerivation ( rec {
|
2008-11-04 10:03:05 +01:00
|
|
|
name = "ncurses-5.7";
|
2008-08-25 17:29:04 +02: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
|
|
|
};
|
2008-08-25 17:29:04 +02:00
|
|
|
|
2009-01-19 12:01:20 +01:00
|
|
|
configureFlags = ''
|
|
|
|
--with-shared --includedir=''${out}/include --without-debug
|
|
|
|
${if unicode then "--enable-widec" else ""}
|
|
|
|
'';
|
2009-11-20 17:38:01 +01:00
|
|
|
|
2009-11-22 23:48:43 +01:00
|
|
|
selfBuildNativeInput = true;
|
Enable parallel building of gcc, glibc, gmp, mpfr, ncurses, coreutils, perl, python, git, and qt4.
If a build expressions has set "enableParallelBuilding = true", then the
generic builder may utilize more than one CPU core to build that particular
expression. This feature works out of the box for GNU Make. Expressions that
use other build drivers like Boost.Jam or SCons have to specify appropriate
flags such as "-j${NIX_BUILD_CORES}" themselves.
svn path=/nixpkgs/trunk/; revision=23042
2010-08-08 20:51:42 +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 ''
|
2010-01-17 22:52:11 +01:00
|
|
|
chmod 644 $out/lib/libncurses++w.a
|
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";
|
|
|
|
};
|
2010-03-16 11:52:12 +01:00
|
|
|
} // ( if stdenv.isDarwin then { postFixup = "rm $out/lib/*.so"; } else { } ) )
|