2014-08-08 18:28:24 +01:00
|
|
|
{ lib, stdenv, fetchurl, unicode ? true }:
|
2004-03-05 10:13:23 +00:00
|
|
|
|
2011-01-17 09:16:30 +00: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. */
|
2013-02-28 15:20:03 +00:00
|
|
|
cxx = !stdenv.isSunOS;
|
2011-01-17 09:16:30 +00:00
|
|
|
in
|
2014-08-08 18:28:24 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2011-10-02 21:35:44 +01:00
|
|
|
name = "ncurses-5.9";
|
2011-01-17 09:16:30 +00:00
|
|
|
|
2004-03-05 10:13:23 +00:00
|
|
|
src = fetchurl {
|
2008-11-04 09:03:05 +00:00
|
|
|
url = "mirror://gnu/ncurses/${name}.tar.gz";
|
2011-10-02 21:35:44 +01:00
|
|
|
sha256 = "0fsn7xis81za62afan0vvm38bvgzg5wfmv1m86flqcj0nj7jjilh";
|
2004-03-05 10:13:23 +00:00
|
|
|
};
|
2010-10-12 20:39:30 +01:00
|
|
|
|
2014-08-17 21:17:13 +01:00
|
|
|
patches = [ ./patch-ac ./clang.patch ];
|
2013-12-08 19:11:40 +00:00
|
|
|
|
2009-01-19 11:01:20 +00:00
|
|
|
configureFlags = ''
|
2014-02-27 07:28:35 +00:00
|
|
|
--with-shared --without-debug --enable-pc-files --enable-symlinks
|
2011-01-17 09:16:30 +00:00
|
|
|
${if unicode then "--enable-widec" else ""}${if cxx then "" else "--without-cxx-binding"}
|
2009-01-19 11:01:20 +00:00
|
|
|
'';
|
2009-11-20 16:38:01 +00:00
|
|
|
|
2013-12-25 12:13:02 +00:00
|
|
|
# PKG_CONFIG_LIBDIR is where the *.pc files will be installed. If this
|
|
|
|
# directory doesn't exist, the configure script will disable installation of
|
|
|
|
# *.pc files. The configure script usually (on LSB distros) pick $(path of
|
|
|
|
# pkg-config)/../lib/pkgconfig. On NixOS that path doesn't exist and is not
|
|
|
|
# the place we want to put *.pc files from other packages anyway. So we must
|
|
|
|
# tell it explicitly where to install with PKG_CONFIG_LIBDIR.
|
2013-12-08 19:11:40 +00:00
|
|
|
preConfigure = ''
|
|
|
|
export configureFlags="$configureFlags --includedir=$out/include"
|
2013-12-25 12:13:02 +00:00
|
|
|
export PKG_CONFIG_LIBDIR="$out/lib/pkgconfig"
|
|
|
|
mkdir -p "$PKG_CONFIG_LIBDIR"
|
2013-12-08 19:11:40 +00:00
|
|
|
'';
|
2013-02-28 15:20:03 +00:00
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
selfNativeBuildInput = true;
|
2010-07-20 14:14:03 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2012-04-23 16:47:37 +01:00
|
|
|
preBuild =
|
|
|
|
# On Darwin, we end up using the native `sed' during bootstrap, and it
|
|
|
|
# fails to run this command, which isn't needed anyway.
|
2014-08-08 18:28:24 +01:00
|
|
|
lib.optionalString (!stdenv.isDarwin)
|
|
|
|
''sed -e "s@\([[:space:]]\)sh @\1''${SHELL} @" -i */Makefile Makefile'';
|
2008-08-25 16:29:04 +01: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 11:01:20 +00:00
|
|
|
postInstall = if unicode then ''
|
2011-01-20 23:32:09 +00:00
|
|
|
${if cxx then "chmod 644 $out/lib/libncurses++w.a" else ""}
|
2007-06-26 12:34:05 +01:00
|
|
|
for lib in curses ncurses form panel menu; do
|
2009-01-19 11:01:20 +00:00
|
|
|
if test -e $out/lib/lib''${lib}w.a; then
|
2010-01-17 22:08:22 +00:00
|
|
|
rm -f $out/lib/lib$lib.so
|
2009-01-19 11:01:20 +00: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
|
2013-12-25 12:13:02 +00:00
|
|
|
ln -svf ''${lib}w.pc $out/lib/pkgconfig/$lib.pc
|
2008-08-25 16:29:04 +01:00
|
|
|
fi
|
2007-06-26 12:34:05 +01:00
|
|
|
done;
|
2013-05-23 23:56:00 +01:00
|
|
|
ln -svf . $out/include/ncursesw
|
2013-12-26 17:42:10 +00:00
|
|
|
ln -svf ncursesw5-config $out/bin/ncurses5-config
|
2009-01-19 11:01:20 +00:00
|
|
|
'' else "";
|
2008-11-04 09:03:05 +00:00
|
|
|
|
2014-08-08 18:28:24 +01:00
|
|
|
postFixup = lib.optionalString stdenv.isDarwin "rm $out/lib/*.so";
|
|
|
|
|
2008-11-04 09:03:05 +00:00
|
|
|
meta = {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Free software emulation of curses in SVR4 and more";
|
2008-11-04 09:03:05 +00:00
|
|
|
|
|
|
|
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/;
|
|
|
|
|
2014-08-08 18:28:24 +01:00
|
|
|
license = lib.licenses.mit;
|
2011-01-17 09:16:30 +00:00
|
|
|
|
2015-01-13 21:33:24 +00:00
|
|
|
maintainers = [ ];
|
2014-08-08 18:28:24 +01:00
|
|
|
platforms = lib.platforms.all;
|
2008-11-04 09:03:05 +00:00
|
|
|
};
|
2014-08-08 18:28:24 +01:00
|
|
|
}
|