2020-10-27 00:52:46 +00:00
|
|
|
{ lib, fetchurl, stdenv, slang, popt, python }:
|
2012-01-06 16:45:14 +00:00
|
|
|
|
2020-10-27 00:52:46 +00:00
|
|
|
let
|
|
|
|
pythonIncludePath = "${lib.getDev python}/include/python";
|
|
|
|
in
|
2012-01-06 16:45:14 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-05-29 00:40:13 +01:00
|
|
|
pname = "newt";
|
|
|
|
version = "0.52.21";
|
2012-01-06 16:45:14 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-10-15 04:11:42 +01:00
|
|
|
url = "https://releases.pagure.org/${pname}/${pname}-${version}.tar.gz";
|
2019-05-29 00:40:13 +01:00
|
|
|
sha256 = "0cdvbancr7y4nrj8257y5n45hmhizr8isynagy4fpsnpammv8pi6";
|
2012-01-06 16:45:14 +00:00
|
|
|
};
|
|
|
|
|
2021-07-29 19:58:15 +01:00
|
|
|
postPatch = ''
|
2012-01-06 16:45:14 +00:00
|
|
|
sed -i -e s,/usr/bin/install,install, -e s,-I/usr/include/slang,, Makefile.in po/Makefile
|
2020-10-27 00:52:46 +00:00
|
|
|
|
|
|
|
substituteInPlace configure \
|
|
|
|
--replace "/usr/include/python" "${pythonIncludePath}"
|
|
|
|
substituteInPlace configure.ac \
|
|
|
|
--replace "/usr/include/python" "${pythonIncludePath}"
|
2021-07-29 19:58:15 +01:00
|
|
|
|
|
|
|
substituteInPlace Makefile.in \
|
|
|
|
--replace "ar rv" "${stdenv.cc.targetPrefix}ar rv"
|
2012-01-06 16:45:14 +00:00
|
|
|
'';
|
|
|
|
|
2021-07-29 19:58:15 +01:00
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [ python ];
|
|
|
|
buildInputs = [ slang popt ];
|
2012-01-06 16:45:14 +00:00
|
|
|
|
2015-10-06 10:52:25 +01:00
|
|
|
NIX_LDFLAGS = "-lncurses";
|
|
|
|
|
2017-07-20 16:42:58 +01:00
|
|
|
preConfigure = ''
|
|
|
|
# If CPP is set explicitly, configure and make will not agree about which
|
|
|
|
# programs to use at different stages.
|
|
|
|
unset CPP
|
|
|
|
'';
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
makeFlags = lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [
|
2018-09-04 18:35:20 +01:00
|
|
|
"CROSS_COMPILE=${stdenv.cc.targetPrefix}"
|
|
|
|
];
|
2012-01-06 16:45:14 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2021-10-15 04:11:42 +01:00
|
|
|
homepage = "https://pagure.io/newt";
|
2012-01-06 16:45:14 +00:00
|
|
|
description = "Library for color text mode, widget based user interfaces";
|
|
|
|
|
2015-10-06 10:52:25 +01:00
|
|
|
license = licenses.lgpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.viric ];
|
2012-01-06 16:45:14 +00:00
|
|
|
};
|
|
|
|
}
|