2018-01-05 08:33:58 +00:00
|
|
|
{ stdenv, fetchurl, stfl, sqlite, curl, gettext, pkgconfig, libxml2, json_c, ncurses
|
2018-01-21 23:43:05 +00:00
|
|
|
, asciidoc, docbook_xml_dtd_45, libxslt, docbook_xml_xslt, libiconv, makeWrapper }:
|
2018-01-05 08:33:58 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "newsboat-${version}";
|
|
|
|
version = "2.10.2";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://newsboat.org/releases/${version}/${name}.tar.xz";
|
|
|
|
sha256 = "1x4nxx1kvmrcm8jy73dvg56h4z15y3sach2vr13cw8rsbi7v99px";
|
|
|
|
};
|
|
|
|
|
|
|
|
prePatch = ''
|
|
|
|
substituteInPlace Makefile --replace "|| true" ""
|
2018-01-21 23:43:05 +00:00
|
|
|
# Allow other ncurses versions on Darwin
|
|
|
|
substituteInPlace config.sh \
|
|
|
|
--replace "ncurses5.4" "ncurses"
|
2018-01-05 08:33:58 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig asciidoc docbook_xml_dtd_45 libxslt docbook_xml_xslt ]
|
2018-01-21 23:43:05 +00:00
|
|
|
++ stdenv.lib.optional stdenv.isDarwin [ makeWrapper libiconv ];
|
2018-01-05 08:33:58 +00:00
|
|
|
|
|
|
|
buildInputs = [ stfl sqlite curl gettext libxml2 json_c ncurses ];
|
|
|
|
|
2018-01-21 23:43:05 +00:00
|
|
|
makeFlags = [ "prefix=$(out)" ];
|
2018-01-05 08:33:58 +00:00
|
|
|
|
2018-01-21 23:43:05 +00:00
|
|
|
doCheck = true;
|
|
|
|
checkTarget = "test";
|
|
|
|
|
2018-03-05 20:46:18 +00:00
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error=sign-compare";
|
|
|
|
|
2018-01-21 23:43:05 +00:00
|
|
|
postInstall = ''
|
|
|
|
cp -r contrib $out
|
|
|
|
'' + stdenv.lib.optionalString stdenv.isDarwin ''
|
2018-01-05 08:33:58 +00:00
|
|
|
for prog in $out/bin/*; do
|
|
|
|
wrapProgram "$prog" --prefix DYLD_LIBRARY_PATH : "${stfl}/lib"
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://newsboat.org/;
|
|
|
|
description = "A fork of Newsbeuter, an RSS/Atom feed reader for the text console.";
|
2018-01-21 23:43:05 +00:00
|
|
|
maintainers = with maintainers; [ dotlambda nicknovitski ];
|
2018-01-05 08:33:58 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|