2012-01-06 16:45:14 +00:00
|
|
|
{ fetchurl, stdenv, slang, popt }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-02-27 16:01:40 +00:00
|
|
|
name = "newt-0.52.20";
|
2012-01-06 16:45:14 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://fedorahosted.org/releases/n/e/newt/${name}.tar.gz";
|
2018-02-27 16:01:40 +00:00
|
|
|
sha256 = "1g3dpfnvaw7vljbr7nzq1rl88d6r8cmrvvng9inphgzwxxmvlrld";
|
2012-01-06 16:45:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
sed -i -e s,/usr/bin/install,install, -e s,-I/usr/include/slang,, Makefile.in po/Makefile
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs = [ slang popt ];
|
|
|
|
|
2015-10-06 09:52:25 +00:00
|
|
|
NIX_LDFLAGS = "-lncurses";
|
|
|
|
|
2017-07-20 15:42:58 +00:00
|
|
|
preConfigure = ''
|
|
|
|
# If CPP is set explicitly, configure and make will not agree about which
|
|
|
|
# programs to use at different stages.
|
|
|
|
unset CPP
|
|
|
|
'';
|
|
|
|
|
2012-01-06 16:45:14 +00:00
|
|
|
crossAttrs = {
|
2017-11-25 18:43:57 +00:00
|
|
|
makeFlags = "CROSS_COMPILE=${stdenv.cc.targetPrefix}";
|
2012-01-06 16:45:14 +00:00
|
|
|
};
|
|
|
|
|
2015-10-06 09:52:25 +00:00
|
|
|
meta = with stdenv.lib; {
|
2012-01-06 16:45:14 +00:00
|
|
|
homepage = https://fedorahosted.org/newt/;
|
|
|
|
description = "Library for color text mode, widget based user interfaces";
|
|
|
|
|
2015-10-06 09:52:25 +00:00
|
|
|
license = licenses.lgpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.viric ];
|
2012-01-06 16:45:14 +00:00
|
|
|
};
|
|
|
|
}
|