2021-01-19 07:50:56 +01:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config
|
2015-05-01 03:04:37 +02:00
|
|
|
|
2018-05-01 20:46:05 +02:00
|
|
|
, abiVersion ? "6"
|
2015-06-01 20:38:19 +02:00
|
|
|
, mouseSupport ? false
|
|
|
|
, unicode ? true
|
2020-12-20 07:11:26 +01:00
|
|
|
, enableStatic ? stdenv.hostPlatform.isStatic
|
2018-12-05 04:16:43 +01:00
|
|
|
, enableShared ? !enableStatic
|
2018-02-21 00:23:00 +01:00
|
|
|
, withCxx ? !stdenv.hostPlatform.useAndroidPrebuilt
|
2015-06-01 20:38:19 +02:00
|
|
|
|
|
|
|
, gpm
|
2017-04-26 05:52:29 +02:00
|
|
|
|
|
|
|
, buildPackages
|
2015-05-01 03:04:37 +02:00
|
|
|
}:
|
2017-08-17 10:19:08 +02:00
|
|
|
|
2015-06-19 05:00:18 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-01-21 13:39:40 +01:00
|
|
|
# Note the revision needs to be adjusted.
|
2020-02-13 13:29:33 +01:00
|
|
|
version = "6.2";
|
2018-01-28 02:22:41 +01:00
|
|
|
name = "ncurses-${version}" + lib.optionalString (abiVersion == "5") "-abi5-compat";
|
2011-01-17 10:16:30 +01:00
|
|
|
|
2019-01-21 13:39:40 +01: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.
|
2020-02-13 13:29:33 +01:00
|
|
|
rev = "v${version}";
|
2019-01-21 13:39:40 +01:00
|
|
|
in fetchurl {
|
|
|
|
url = "https://github.com/mirror/ncurses/archive/${rev}.tar.gz";
|
2020-02-13 13:29:33 +01:00
|
|
|
sha256 = "15r2456g0mlq2q7gh2z52vl6zv6y0z8sdchrs80kg4idqd8sm8fd";
|
2018-01-28 02:22:41 +01:00
|
|
|
};
|
2010-10-12 21:39:30 +02:00
|
|
|
|
2018-11-07 07:43:28 +01:00
|
|
|
patches = lib.optional (!stdenv.cc.isClang) ./clang.patch;
|
2015-05-01 03:04:37 +02:00
|
|
|
|
2016-08-29 02:30:01 +02:00
|
|
|
outputs = [ "out" "dev" "man" ];
|
2015-10-05 20:32:54 +02:00
|
|
|
setOutputFlags = false; # some aren't supported
|
|
|
|
|
2015-06-20 22:59:11 +02:00
|
|
|
configureFlags = [
|
2018-12-05 04:16:43 +01:00
|
|
|
(lib.withFeature enableShared "shared")
|
2015-06-20 22:59:11 +02:00
|
|
|
"--without-debug"
|
|
|
|
"--enable-pc-files"
|
|
|
|
"--enable-symlinks"
|
2018-11-07 07:43:28 +01:00
|
|
|
"--with-manpage-format=normal"
|
2018-12-09 14:45:49 +01:00
|
|
|
"--disable-stripping"
|
2018-01-28 02:22:41 +01:00
|
|
|
] ++ lib.optional unicode "--enable-widec"
|
2018-02-21 00:23:00 +01:00
|
|
|
++ lib.optional (!withCxx) "--without-cxx"
|
2018-07-21 03:14:28 +02:00
|
|
|
++ lib.optional (abiVersion == "5") "--with-abi-version=5"
|
2021-06-06 20:03:08 +02:00
|
|
|
++ lib.optional stdenv.hostPlatform.isNetBSD "--enable-rpath"
|
2018-08-20 20:43:41 +02:00
|
|
|
++ lib.optionals stdenv.hostPlatform.isWindows [
|
2018-07-21 03:14:28 +02:00
|
|
|
"--enable-sp-funcs"
|
|
|
|
"--enable-term-driver"
|
|
|
|
];
|
2015-06-01 20:38:19 +02:00
|
|
|
|
2015-11-08 02:47:17 +01: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-26 05:10:03 +02:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
2017-04-26 05:52:29 +02:00
|
|
|
nativeBuildInputs = [
|
2021-01-19 07:50:56 +01:00
|
|
|
pkg-config
|
2018-08-20 20:43:41 +02:00
|
|
|
] ++ lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [
|
2017-06-26 05:10:03 +02:00
|
|
|
buildPackages.ncurses
|
2017-04-26 05:52:29 +02:00
|
|
|
];
|
2015-06-01 20:38:19 +02:00
|
|
|
buildInputs = lib.optional (mouseSupport && stdenv.isLinux) gpm;
|
2009-11-20 17:38:01 +01:00
|
|
|
|
2015-06-21 09:57:17 +02:00
|
|
|
preConfigure = ''
|
2015-10-05 20:32:54 +02:00
|
|
|
export PKG_CONFIG_LIBDIR="$dev/lib/pkgconfig"
|
2015-06-21 09:57:17 +02:00
|
|
|
mkdir -p "$PKG_CONFIG_LIBDIR"
|
2015-10-21 01:25:42 +02:00
|
|
|
configureFlagsArray+=(
|
2016-02-01 18:16:50 +01:00
|
|
|
"--libdir=$out/lib"
|
2015-10-21 01:25:42 +02:00
|
|
|
"--includedir=$dev/include"
|
|
|
|
"--bindir=$dev/bin"
|
|
|
|
"--mandir=$man/share/man"
|
|
|
|
"--with-pkg-config-libdir=$PKG_CONFIG_LIBDIR"
|
|
|
|
)
|
2015-11-08 02:47:17 +01: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 20:11:40 +01:00
|
|
|
'';
|
2013-02-28 16:20:03 +01:00
|
|
|
|
2010-07-20 15:14:03 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-05-01 03:04:37 +02:00
|
|
|
doCheck = false;
|
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).
|
2018-05-02 21:53:45 +02:00
|
|
|
postFixup = let
|
|
|
|
abiVersion-extension = if stdenv.isDarwin then "${abiVersion}.$dylibtype" else "$dylibtype.${abiVersion}"; in
|
|
|
|
''
|
2015-06-19 05:00:18 +02: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 20:32:54 +02:00
|
|
|
libs="$(ls $dev/lib/pkgconfig | tr ' ' '\n' | sed "s,\(.*\)$suffix\.pc,\1,g")"
|
2015-06-19 05:00:18 +02:00
|
|
|
suffixes="$(echo "$suffix" | awk '{for (i=1; i < length($0); i++) {x=substr($0, i+1, length($0)-i); print x}}')"
|
2015-05-01 03:04:37 +02:00
|
|
|
|
2015-06-19 05:00:18 +02:00
|
|
|
# Get the path to the config util
|
2015-10-05 20:32:54 +02:00
|
|
|
cfg=$(basename $dev/bin/ncurses*-config)
|
2015-05-01 03:04:37 +02:00
|
|
|
|
2015-06-23 05:25:26 +02:00
|
|
|
# symlink the full suffixed include directory
|
2015-10-05 20:32:54 +02:00
|
|
|
ln -svf . $dev/include/ncurses$suffix
|
2015-06-23 05:25:26 +02:00
|
|
|
|
2015-06-19 05:00:18 +02:00
|
|
|
for newsuffix in $suffixes ""; do
|
|
|
|
# Create a non-abi versioned config util links
|
2015-10-05 20:32:54 +02:00
|
|
|
ln -svf $cfg $dev/bin/ncurses$newsuffix-config
|
2015-06-19 05:00:18 +02:00
|
|
|
|
|
|
|
# Allow for end users who #include <ncurses?w/*.h>
|
2015-10-05 20:32:54 +02:00
|
|
|
ln -svf . $dev/include/ncurses$newsuffix
|
2015-06-19 05:00:18 +02:00
|
|
|
|
2015-10-05 20:32:54 +02:00
|
|
|
for library in $libs; do
|
2015-06-19 05:00:18 +02:00
|
|
|
for dylibtype in so dll dylib; do
|
2016-02-01 18:16:50 +01: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 21:53:45 +02:00
|
|
|
ln -svf lib''${library}$suffix.${abiVersion-extension} $out/lib/lib$library$newsuffix.${abiVersion-extension}
|
2016-12-28 16:02:11 +01:00
|
|
|
if [ "ncurses" = "$library" ]
|
|
|
|
then
|
|
|
|
# make libtinfo symlinks
|
|
|
|
ln -svf lib''${library}$suffix.$dylibtype $out/lib/libtinfo$newsuffix.$dylibtype
|
2018-05-02 21:53:45 +02:00
|
|
|
ln -svf lib''${library}$suffix.${abiVersion-extension} $out/lib/libtinfo$newsuffix.${abiVersion-extension}
|
2016-12-28 16:02:11 +01:00
|
|
|
fi
|
2015-06-19 05:00:18 +02:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
for statictype in a dll.a la; do
|
2016-02-01 18:16:50 +01: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 14:38:39 +02:00
|
|
|
if [ "ncurses" = "$library" ]
|
|
|
|
then
|
|
|
|
# make libtinfo symlinks
|
|
|
|
ln -svf lib''${library}$suffix.$statictype $out/lib/libtinfo$newsuffix.$statictype
|
|
|
|
fi
|
2015-06-19 05:00:18 +02:00
|
|
|
fi
|
|
|
|
done
|
2015-10-05 20:32:54 +02:00
|
|
|
ln -svf ''${library}$suffix.pc $dev/lib/pkgconfig/$library$newsuffix.pc
|
2015-06-19 05:00:18 +02:00
|
|
|
done
|
|
|
|
done
|
2016-02-01 18:18:39 +01: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-13 07:13:04 +02:00
|
|
|
moveToOutput "bin/tic" "$out"
|
2016-02-01 18:18:39 +01:00
|
|
|
moveToOutput "bin/tput" "$out"
|
|
|
|
moveToOutput "bin/tset" "$out"
|
2018-02-20 21:30:20 +01:00
|
|
|
moveToOutput "bin/captoinfo" "$out"
|
|
|
|
moveToOutput "bin/infotocap" "$out"
|
2019-10-28 03:16:43 +01:00
|
|
|
moveToOutput "bin/infocmp" "$out"
|
2015-05-01 03:04:37 +02:00
|
|
|
'';
|
2014-08-08 19:28:24 +02:00
|
|
|
|
2018-08-20 20:43:41 +02:00
|
|
|
preFixup = lib.optionalString (!stdenv.hostPlatform.isCygwin && !enableStatic) ''
|
2016-02-01 18:16:50 +01:00
|
|
|
rm "$out"/lib/*.a
|
2015-10-06 15:24:20 +02:00
|
|
|
'';
|
|
|
|
|
2015-05-22 21:59:21 +02:00
|
|
|
meta = {
|
2014-08-24 16:21:08 +02:00
|
|
|
description = "Free software emulation of curses in SVR4 and more";
|
2008-11-04 10:03:05 +01: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!
|
|
|
|
'';
|
|
|
|
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://www.gnu.org/software/ncurses/";
|
2008-11-04 10:03:05 +01:00
|
|
|
|
2015-06-01 20:38:19 +02:00
|
|
|
license = lib.licenses.mit;
|
|
|
|
platforms = lib.platforms.all;
|
2008-11-04 10:03:05 +01:00
|
|
|
};
|
2015-05-01 03:04:37 +02:00
|
|
|
|
2015-06-22 14:40:55 +02:00
|
|
|
passthru = {
|
2015-06-22 19:57:36 +02:00
|
|
|
ldflags = "-lncurses";
|
2015-10-06 15:24:20 +02:00
|
|
|
inherit unicode abiVersion;
|
2015-06-22 14:40:55 +02:00
|
|
|
};
|
2014-08-08 19:28:24 +02:00
|
|
|
}
|