2016-07-09 07:26:42 -07:00
|
|
|
{ lib, stdenv, fetchurl, pkgconfig
|
2015-04-30 18:04:37 -07:00
|
|
|
|
2018-05-01 11:46:05 -07:00
|
|
|
, abiVersion ? "6"
|
2015-06-01 11:38:19 -07:00
|
|
|
, mouseSupport ? false
|
|
|
|
, unicode ? true
|
2018-02-20 15:23:00 -08:00
|
|
|
, enableStatic ? stdenv.hostPlatform.useAndroidPrebuilt
|
2018-12-04 19:16:43 -08:00
|
|
|
, enableShared ? !enableStatic
|
2018-02-20 15:23:00 -08:00
|
|
|
, withCxx ? !stdenv.hostPlatform.useAndroidPrebuilt
|
2015-06-01 11:38:19 -07:00
|
|
|
|
|
|
|
, gpm
|
2017-04-25 20:52:29 -07:00
|
|
|
|
|
|
|
, buildPackages
|
2015-04-30 18:04:37 -07:00
|
|
|
}:
|
2017-08-17 01:19:08 -07:00
|
|
|
|
2015-06-18 20:00:18 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2019-01-21 04:39:40 -08:00
|
|
|
# Note the revision needs to be adjusted.
|
2019-01-16 02:41:31 -08:00
|
|
|
version = "6.1-20190112";
|
2018-01-27 17:22:41 -08:00
|
|
|
name = "ncurses-${version}" + lib.optionalString (abiVersion == "5") "-abi5-compat";
|
2011-01-17 01:16:30 -08:00
|
|
|
|
2019-01-21 04:39:40 -08:00
|
|
|
# We cannot use fetchFromGitHub (which calls fetchzip)
|
|
|
|
# because we need to be able to use fetchurlBoot.
|
|
|
|
src = let
|
|
|
|
# Note the version needs to be adjusted.
|
|
|
|
rev = "acb4184f8f69fddd052a3daa8c8675f4bf8ce369";
|
|
|
|
in fetchurl {
|
|
|
|
url = "https://github.com/mirror/ncurses/archive/${rev}.tar.gz";
|
|
|
|
sha256 = "1z8v63cj2y7dxf4m1api8cvk0ns9frif9c60m2sxhibs06pjy4q0";
|
2018-01-27 17:22:41 -08:00
|
|
|
};
|
2010-10-12 12:39:30 -07:00
|
|
|
|
2018-11-06 22:43:28 -08:00
|
|
|
patches = lib.optional (!stdenv.cc.isClang) ./clang.patch;
|
2015-04-30 18:04:37 -07:00
|
|
|
|
2016-08-28 17:30:01 -07:00
|
|
|
outputs = [ "out" "dev" "man" ];
|
2015-10-05 11:32:54 -07:00
|
|
|
setOutputFlags = false; # some aren't supported
|
|
|
|
|
2015-06-20 13:59:11 -07:00
|
|
|
configureFlags = [
|
2018-12-04 19:16:43 -08:00
|
|
|
(lib.withFeature enableShared "shared")
|
2015-06-20 13:59:11 -07:00
|
|
|
"--without-debug"
|
|
|
|
"--enable-pc-files"
|
|
|
|
"--enable-symlinks"
|
2018-11-06 22:43:28 -08:00
|
|
|
"--with-manpage-format=normal"
|
2018-12-09 05:45:49 -08:00
|
|
|
"--disable-stripping"
|
2018-01-27 17:22:41 -08:00
|
|
|
] ++ lib.optional unicode "--enable-widec"
|
2018-02-20 15:23:00 -08:00
|
|
|
++ lib.optional (!withCxx) "--without-cxx"
|
2018-07-20 18:14:28 -07:00
|
|
|
++ lib.optional (abiVersion == "5") "--with-abi-version=5"
|
2018-08-20 11:43:41 -07:00
|
|
|
++ lib.optionals stdenv.hostPlatform.isWindows [
|
2018-07-20 18:14:28 -07:00
|
|
|
"--enable-sp-funcs"
|
|
|
|
"--enable-term-driver"
|
|
|
|
];
|
2015-06-01 11:38:19 -07:00
|
|
|
|
2015-11-07 17:47:17 -08:00
|
|
|
# Only the C compiler, and explicitly not C++ compiler needs this flag on solaris:
|
|
|
|
CFLAGS = lib.optionalString stdenv.isSunOS "-D_XOPEN_SOURCE_EXTENDED";
|
|
|
|
|
2017-06-25 20:10:03 -07:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
2017-04-25 20:52:29 -07:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
2018-08-20 11:43:41 -07:00
|
|
|
] ++ lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [
|
2017-06-25 20:10:03 -07:00
|
|
|
buildPackages.ncurses
|
2017-04-25 20:52:29 -07:00
|
|
|
];
|
2015-06-01 11:38:19 -07:00
|
|
|
buildInputs = lib.optional (mouseSupport && stdenv.isLinux) gpm;
|
2009-11-20 08:38:01 -08:00
|
|
|
|
2015-06-21 00:57:17 -07:00
|
|
|
preConfigure = ''
|
2015-10-05 11:32:54 -07:00
|
|
|
export PKG_CONFIG_LIBDIR="$dev/lib/pkgconfig"
|
2015-06-21 00:57:17 -07:00
|
|
|
mkdir -p "$PKG_CONFIG_LIBDIR"
|
2015-10-20 16:25:42 -07:00
|
|
|
configureFlagsArray+=(
|
2016-02-01 09:16:50 -08:00
|
|
|
"--libdir=$out/lib"
|
2015-10-20 16:25:42 -07:00
|
|
|
"--includedir=$dev/include"
|
|
|
|
"--bindir=$dev/bin"
|
|
|
|
"--mandir=$man/share/man"
|
|
|
|
"--with-pkg-config-libdir=$PKG_CONFIG_LIBDIR"
|
|
|
|
)
|
2015-11-07 17:47:17 -08:00
|
|
|
''
|
|
|
|
+ lib.optionalString stdenv.isSunOS ''
|
|
|
|
sed -i -e '/-D__EXTENSIONS__/ s/-D_XOPEN_SOURCE=\$cf_XOPEN_SOURCE//' \
|
|
|
|
-e '/CPPFLAGS="$CPPFLAGS/s/ -D_XOPEN_SOURCE_EXTENDED//' \
|
|
|
|
configure
|
|
|
|
CFLAGS=-D_XOPEN_SOURCE_EXTENDED
|
2013-12-08 11:11:40 -08:00
|
|
|
'';
|
2013-02-28 07:20:03 -08:00
|
|
|
|
2010-07-20 06:14:03 -07:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-04-30 18:04:37 -07:00
|
|
|
doCheck = false;
|
2008-08-25 08:29:04 -07: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).
|
2018-05-02 12:53:45 -07:00
|
|
|
postFixup = let
|
|
|
|
abiVersion-extension = if stdenv.isDarwin then "${abiVersion}.$dylibtype" else "$dylibtype.${abiVersion}"; in
|
|
|
|
''
|
2015-06-18 20:00:18 -07:00
|
|
|
# Determine what suffixes our libraries have
|
|
|
|
suffix="$(awk -F': ' 'f{print $3; f=0} /default library suffix/{f=1}' config.log)"
|
2015-10-05 11:32:54 -07:00
|
|
|
libs="$(ls $dev/lib/pkgconfig | tr ' ' '\n' | sed "s,\(.*\)$suffix\.pc,\1,g")"
|
2015-06-18 20:00:18 -07:00
|
|
|
suffixes="$(echo "$suffix" | awk '{for (i=1; i < length($0); i++) {x=substr($0, i+1, length($0)-i); print x}}')"
|
2015-04-30 18:04:37 -07:00
|
|
|
|
2015-06-18 20:00:18 -07:00
|
|
|
# Get the path to the config util
|
2015-10-05 11:32:54 -07:00
|
|
|
cfg=$(basename $dev/bin/ncurses*-config)
|
2015-04-30 18:04:37 -07:00
|
|
|
|
2015-06-22 20:25:26 -07:00
|
|
|
# symlink the full suffixed include directory
|
2015-10-05 11:32:54 -07:00
|
|
|
ln -svf . $dev/include/ncurses$suffix
|
2015-06-22 20:25:26 -07:00
|
|
|
|
2015-06-18 20:00:18 -07:00
|
|
|
for newsuffix in $suffixes ""; do
|
|
|
|
# Create a non-abi versioned config util links
|
2015-10-05 11:32:54 -07:00
|
|
|
ln -svf $cfg $dev/bin/ncurses$newsuffix-config
|
2015-06-18 20:00:18 -07:00
|
|
|
|
|
|
|
# Allow for end users who #include <ncurses?w/*.h>
|
2015-10-05 11:32:54 -07:00
|
|
|
ln -svf . $dev/include/ncurses$newsuffix
|
2015-06-18 20:00:18 -07:00
|
|
|
|
2015-10-05 11:32:54 -07:00
|
|
|
for library in $libs; do
|
2015-06-18 20:00:18 -07:00
|
|
|
for dylibtype in so dll dylib; do
|
2016-02-01 09:16:50 -08:00
|
|
|
if [ -e "$out/lib/lib''${library}$suffix.$dylibtype" ]; then
|
|
|
|
ln -svf lib''${library}$suffix.$dylibtype $out/lib/lib$library$newsuffix.$dylibtype
|
2018-05-02 12:53:45 -07:00
|
|
|
ln -svf lib''${library}$suffix.${abiVersion-extension} $out/lib/lib$library$newsuffix.${abiVersion-extension}
|
2016-12-28 07:02:11 -08:00
|
|
|
if [ "ncurses" = "$library" ]
|
|
|
|
then
|
|
|
|
# make libtinfo symlinks
|
|
|
|
ln -svf lib''${library}$suffix.$dylibtype $out/lib/libtinfo$newsuffix.$dylibtype
|
2018-05-02 12:53:45 -07:00
|
|
|
ln -svf lib''${library}$suffix.${abiVersion-extension} $out/lib/libtinfo$newsuffix.${abiVersion-extension}
|
2016-12-28 07:02:11 -08:00
|
|
|
fi
|
2015-06-18 20:00:18 -07:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
for statictype in a dll.a la; do
|
2016-02-01 09:16:50 -08:00
|
|
|
if [ -e "$out/lib/lib''${library}$suffix.$statictype" ]; then
|
|
|
|
ln -svf lib''${library}$suffix.$statictype $out/lib/lib$library$newsuffix.$statictype
|
2018-07-14 05:38:39 -07:00
|
|
|
if [ "ncurses" = "$library" ]
|
|
|
|
then
|
|
|
|
# make libtinfo symlinks
|
|
|
|
ln -svf lib''${library}$suffix.$statictype $out/lib/libtinfo$newsuffix.$statictype
|
|
|
|
fi
|
2015-06-18 20:00:18 -07:00
|
|
|
fi
|
|
|
|
done
|
2015-10-05 11:32:54 -07:00
|
|
|
ln -svf ''${library}$suffix.pc $dev/lib/pkgconfig/$library$newsuffix.pc
|
2015-06-18 20:00:18 -07:00
|
|
|
done
|
|
|
|
done
|
2016-02-01 09:18:39 -08:00
|
|
|
|
|
|
|
# move some utilities to $bin
|
|
|
|
# these programs are used at runtime and don't really belong in $dev
|
|
|
|
moveToOutput "bin/clear" "$out"
|
|
|
|
moveToOutput "bin/reset" "$out"
|
|
|
|
moveToOutput "bin/tabs" "$out"
|
2017-08-12 22:13:04 -07:00
|
|
|
moveToOutput "bin/tic" "$out"
|
2016-02-01 09:18:39 -08:00
|
|
|
moveToOutput "bin/tput" "$out"
|
|
|
|
moveToOutput "bin/tset" "$out"
|
2018-02-20 12:30:20 -08:00
|
|
|
moveToOutput "bin/captoinfo" "$out"
|
|
|
|
moveToOutput "bin/infotocap" "$out"
|
2015-04-30 18:04:37 -07:00
|
|
|
'';
|
2014-08-08 10:28:24 -07:00
|
|
|
|
2018-08-20 11:43:41 -07:00
|
|
|
preFixup = lib.optionalString (!stdenv.hostPlatform.isCygwin && !enableStatic) ''
|
2016-02-01 09:16:50 -08:00
|
|
|
rm "$out"/lib/*.a
|
2015-10-06 06:24:20 -07:00
|
|
|
'';
|
|
|
|
|
2015-05-22 12:59:21 -07:00
|
|
|
meta = {
|
2014-08-24 07:21:08 -07:00
|
|
|
description = "Free software emulation of curses in SVR4 and more";
|
2008-11-04 01:03:05 -08: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!
|
|
|
|
'';
|
|
|
|
|
2018-12-01 10:22:13 -08:00
|
|
|
homepage = https://www.gnu.org/software/ncurses/;
|
2008-11-04 01:03:05 -08:00
|
|
|
|
2015-06-01 11:38:19 -07:00
|
|
|
license = lib.licenses.mit;
|
|
|
|
platforms = lib.platforms.all;
|
2008-11-04 01:03:05 -08:00
|
|
|
};
|
2015-04-30 18:04:37 -07:00
|
|
|
|
2015-06-22 05:40:55 -07:00
|
|
|
passthru = {
|
2015-06-22 10:57:36 -07:00
|
|
|
ldflags = "-lncurses";
|
2015-10-06 06:24:20 -07:00
|
|
|
inherit unicode abiVersion;
|
2015-06-22 05:40:55 -07:00
|
|
|
};
|
2014-08-08 10:28:24 -07:00
|
|
|
}
|