2015-06-01 21:38:19 +03:00
|
|
|
{ lib, stdenv, fetchurl
|
2015-05-01 04:04:37 +03:00
|
|
|
|
2015-06-01 21:38:19 +03:00
|
|
|
, mouseSupport ? false
|
|
|
|
, unicode ? true
|
|
|
|
|
|
|
|
, gpm
|
2015-05-01 04:04:37 +03:00
|
|
|
|
|
|
|
# Extra Options
|
2015-05-02 23:53:37 +03:00
|
|
|
, abiVersion ? "5"
|
2015-05-01 04:04:37 +03:00
|
|
|
}:
|
2004-03-05 13:13:23 +03:00
|
|
|
|
2015-06-19 03:04:09 +03:00
|
|
|
let libSuffix = if stdenv.isDarwin then "dylib" else "so";
|
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
2011-10-03 00:35:44 +04:00
|
|
|
name = "ncurses-5.9";
|
2011-01-17 12:16:30 +03:00
|
|
|
|
2004-03-05 13:13:23 +03:00
|
|
|
src = fetchurl {
|
2008-11-04 12:03:05 +03:00
|
|
|
url = "mirror://gnu/ncurses/${name}.tar.gz";
|
2011-10-03 00:35:44 +04:00
|
|
|
sha256 = "0fsn7xis81za62afan0vvm38bvgzg5wfmv1m86flqcj0nj7jjilh";
|
2004-03-05 13:13:23 +03:00
|
|
|
};
|
2010-10-12 23:39:30 +04:00
|
|
|
|
2015-06-12 03:59:51 +03:00
|
|
|
# gcc-5.patch should be removed after 5.9
|
|
|
|
patches = [ ./clang.patch ./gcc-5.patch ];
|
2015-05-01 04:04:37 +03:00
|
|
|
|
2015-06-01 21:38:19 +03:00
|
|
|
configureFlags =
|
|
|
|
[ "--with-shared" "--without-debug" "--enable-pc-files" "--enable-symlinks" ]
|
|
|
|
++ lib.optional unicode "--enable-widec";
|
|
|
|
|
|
|
|
buildInputs = lib.optional (mouseSupport && stdenv.isLinux) gpm;
|
2009-11-20 19:38:01 +03:00
|
|
|
|
2013-12-25 16:13:02 +04: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 23:11:40 +04:00
|
|
|
preConfigure = ''
|
2013-12-25 16:13:02 +04:00
|
|
|
export PKG_CONFIG_LIBDIR="$out/lib/pkgconfig"
|
|
|
|
mkdir -p "$PKG_CONFIG_LIBDIR"
|
2015-06-01 21:38:19 +03:00
|
|
|
'' + lib.optionalString stdenv.isCygwin ''
|
2014-11-07 16:42:59 +03:00
|
|
|
sed -i -e 's,LIB_SUFFIX="t,LIB_SUFFIX=",' configure
|
2013-12-08 23:11:40 +04:00
|
|
|
'';
|
2013-02-28 19:20:03 +04:00
|
|
|
|
2012-12-28 22:20:09 +04:00
|
|
|
selfNativeBuildInput = true;
|
2010-07-20 17:14:03 +04:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-05-01 04:04:37 +03:00
|
|
|
doCheck = false;
|
2008-08-25 19:29:04 +04: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).
|
2014-11-07 16:42:59 +03:00
|
|
|
postInstall = if unicode then (''
|
2015-05-01 04:04:37 +03:00
|
|
|
# Create a non-abi versioned config
|
|
|
|
cfg=$(basename $out/bin/ncurses*-config)
|
|
|
|
ln -svf $cfg $out/bin/ncursesw-config
|
|
|
|
ln -svf $cfg $out/bin/ncurses-config
|
|
|
|
|
|
|
|
# Allow for end users who #include <ncurses?w/*.h>
|
2015-06-03 21:02:03 +03:00
|
|
|
mv "$out"/include/ncursesw/* "$out"/include/
|
|
|
|
rmdir "$out"/include/ncursesw
|
2013-05-24 02:56:00 +04:00
|
|
|
ln -svf . $out/include/ncursesw
|
2015-05-01 04:04:37 +03:00
|
|
|
ln -svf . $out/include/ncurses
|
2008-11-04 12:03:05 +03:00
|
|
|
|
2015-05-01 04:04:37 +03:00
|
|
|
# Create non-unicode compatability
|
|
|
|
libs="$(find $out/lib -name \*w.a | sed 's,.*lib\(.*\)w.a.*,\1,g')"
|
|
|
|
for lib in $libs; do
|
2015-06-19 03:04:09 +03:00
|
|
|
if [ -e "$out/lib/lib''${lib}w.${libSuffix}" ]; then
|
|
|
|
ln -svf lib''${lib}w.${libSuffix} $out/lib/lib$lib.${libSuffix}
|
|
|
|
ln -svf lib''${lib}w.${libSuffix}.${abiVersion} $out/lib/lib$lib.${libSuffix}.${abiVersion}
|
2015-05-01 04:04:37 +03:00
|
|
|
fi
|
|
|
|
ln -svf lib''${lib}w.a $out/lib/lib$lib.a
|
|
|
|
ln -svf ''${lib}w.pc $out/lib/pkgconfig/$lib.pc
|
|
|
|
done
|
|
|
|
|
|
|
|
# Create curses compatability
|
2015-05-23 01:31:53 +03:00
|
|
|
ln -svf libncursesw.so $out/lib/libcursesw.so
|
|
|
|
ln -svf libncursesw.so $out/lib/libcurses.so
|
2015-06-01 21:38:19 +03:00
|
|
|
'' + lib.optionalString stdenv.isCygwin ''
|
2014-11-07 16:42:59 +03:00
|
|
|
for lib in $libs; do
|
|
|
|
if test -e $out/lib/lib''${lib}w.dll.a; then
|
|
|
|
ln -svf lib''${lib}w.dll.a $out/lib/lib$lib.dll.a
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
'') else ''
|
2015-05-01 04:04:37 +03:00
|
|
|
# Create a non-abi versioned config
|
|
|
|
cfg=$(basename $out/bin/ncurses*-config)
|
|
|
|
ln -svf $cfg $out/bin/ncurses-config
|
|
|
|
|
|
|
|
# Allow for end users who #include <ncurses/*.h>
|
2015-06-03 21:02:03 +03:00
|
|
|
mv "$out"/include/ncurses/* "$out"/include/
|
|
|
|
rmdir "$out"/include/ncurses
|
2015-05-01 04:04:37 +03:00
|
|
|
ln -svf . $out/include/ncurses
|
|
|
|
|
|
|
|
# Create curses compatability
|
2015-05-23 01:31:53 +03:00
|
|
|
ln -svf libncurses.so $out/lib/libcurses.so
|
2015-05-01 04:04:37 +03:00
|
|
|
'';
|
2014-08-08 21:28:24 +04:00
|
|
|
|
2015-06-01 21:45:48 +03:00
|
|
|
preFixup = ''
|
|
|
|
rm $out/lib/*.a
|
|
|
|
'';
|
|
|
|
|
2015-05-22 22:59:21 +03:00
|
|
|
meta = {
|
2014-08-24 18:21:08 +04:00
|
|
|
description = "Free software emulation of curses in SVR4 and more";
|
2008-11-04 12:03:05 +03: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/;
|
|
|
|
|
2015-06-01 21:38:19 +03:00
|
|
|
license = lib.licenses.mit;
|
|
|
|
platforms = lib.platforms.all;
|
|
|
|
maintainers = [ lib.maintainers.wkennington ];
|
2008-11-04 12:03:05 +03:00
|
|
|
};
|
2015-05-01 04:04:37 +03:00
|
|
|
|
|
|
|
passthru.ldflags = if unicode then "-lncursesw" else "-lncurses";
|
2014-08-08 21:28:24 +04:00
|
|
|
}
|