2016-11-20 19:27:29 +00:00
|
|
|
{ stdenv, fetchurl, ncurses, pcre, libpng, zlib, readline, libiconv }:
|
2005-12-25 14:02:09 +00:00
|
|
|
|
2014-09-21 19:26:28 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2018-05-10 06:25:31 +01:00
|
|
|
name = "slang-2.3.2";
|
2005-12-25 14:02:09 +00:00
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://www.jedsoft.org/releases/slang/${name}.tar.bz2";
|
2018-05-10 06:25:31 +01:00
|
|
|
sha256 = "06p379fqn6w38rdpqi98irxi2bf4llb0rja3dlgkqz7nqh7kp7pw";
|
2005-12-25 14:02:09 +00:00
|
|
|
};
|
2014-09-22 19:17:33 +01:00
|
|
|
|
2017-07-11 10:14:14 +01:00
|
|
|
outputs = [ "out" "dev" "man" "doc" ];
|
2015-10-06 10:52:25 +01:00
|
|
|
|
2009-09-16 18:52:54 +01:00
|
|
|
# Fix some wrong hardcoded paths
|
2009-09-16 18:08:33 +01:00
|
|
|
preConfigure = ''
|
2015-10-05 19:32:54 +01:00
|
|
|
sed -i -e "s|/usr/lib/terminfo|${ncurses.out}/lib/terminfo|" configure
|
|
|
|
sed -i -e "s|/usr/lib/terminfo|${ncurses.out}/lib/terminfo|" src/sltermin.c
|
2009-09-16 18:08:33 +01:00
|
|
|
sed -i -e "s|/bin/ln|ln|" src/Makefile.in
|
2015-10-05 19:32:54 +01:00
|
|
|
sed -i -e "s|-ltermcap|-lncurses|" ./configure
|
2009-09-16 18:08:33 +01:00
|
|
|
'';
|
2018-05-10 06:25:31 +01:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-png=${libpng.dev}"
|
|
|
|
"--with-z=${zlib.dev}"
|
|
|
|
"--with-pcre=${pcre.dev}"
|
|
|
|
"--with-readline=${readline.dev}"
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
pcre libpng zlib readline
|
|
|
|
] ++ stdenv.lib.optionals (stdenv.isDarwin) [ libiconv ];
|
|
|
|
|
2015-10-06 10:52:25 +01:00
|
|
|
propagatedBuildInputs = [ ncurses ];
|
|
|
|
|
2018-05-10 06:25:31 +01:00
|
|
|
# slang 2.3.2 does not support parallel building
|
|
|
|
enableParallelBuilding = false;
|
|
|
|
|
2015-10-06 10:52:25 +01:00
|
|
|
postInstall = ''
|
|
|
|
find "$out"/lib/ -name '*.so' -exec chmod +x "{}" \;
|
|
|
|
sed '/^Libs:/s/$/ -lncurses/' -i "$dev"/lib/pkgconfig/slang.pc
|
|
|
|
'';
|
2014-09-21 19:26:28 +01:00
|
|
|
|
2015-10-06 10:52:25 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-09-21 19:26:28 +01:00
|
|
|
description = "A multi-platform programmer's library designed to allow a developer to create robust software";
|
|
|
|
homepage = http://www.jedsoft.org/slang/;
|
2015-10-06 10:52:25 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2018-05-10 06:25:31 +01:00
|
|
|
maintainers = with maintainers; [ fuuzetsu ];
|
2015-10-06 10:52:25 +01:00
|
|
|
platforms = platforms.unix;
|
2014-09-21 19:26:28 +01:00
|
|
|
};
|
2005-12-25 14:02:09 +00:00
|
|
|
}
|