2019-06-16 20:59:06 +01:00
|
|
|
{ stdenv, rustPlatform, fetchurl, stfl, sqlite, curl, gettext, pkgconfig, libxml2, json_c, ncurses
|
2018-12-29 21:33:55 +00:00
|
|
|
, asciidoc, docbook_xml_dtd_45, libxslt, docbook_xsl, libiconv, Security, makeWrapper }:
|
2018-01-05 08:33:58 +00:00
|
|
|
|
2018-12-29 21:33:55 +00:00
|
|
|
rustPlatform.buildRustPackage rec {
|
2018-01-05 08:33:58 +00:00
|
|
|
name = "newsboat-${version}";
|
2019-03-24 22:54:14 +00:00
|
|
|
version = "2.15";
|
2018-01-05 08:33:58 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://newsboat.org/releases/${version}/${name}.tar.xz";
|
2019-03-24 22:54:14 +00:00
|
|
|
sha256 = "1dqdcp34jmphqf3d8ik0xdhg0s66nd5rky0y8y591nidq29wws6s";
|
2018-01-05 08:33:58 +00:00
|
|
|
};
|
|
|
|
|
2019-05-25 12:03:08 +01:00
|
|
|
cargoSha256 = "06r682vvr8m7gl443qx9ncmq8dpmdxcls68f29d0mmf7llddy5sa";
|
2018-12-29 21:33:55 +00:00
|
|
|
|
2019-03-19 16:03:03 +00:00
|
|
|
postPatch = ''
|
2018-01-05 08:33:58 +00:00
|
|
|
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
|
|
|
'';
|
|
|
|
|
2018-07-17 21:11:16 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig asciidoc docbook_xml_dtd_45 libxslt docbook_xsl ]
|
2018-12-29 21:33:55 +00:00
|
|
|
++ stdenv.lib.optional stdenv.isDarwin [ makeWrapper libiconv ];
|
|
|
|
|
|
|
|
buildInputs = [ stfl sqlite curl gettext libxml2 json_c ncurses ]
|
|
|
|
++ stdenv.lib.optional stdenv.isDarwin Security;
|
2018-01-05 08:33:58 +00:00
|
|
|
|
2018-12-29 21:33:55 +00:00
|
|
|
postBuild = ''
|
|
|
|
make
|
|
|
|
'';
|
2018-01-05 08:33:58 +00:00
|
|
|
|
2018-12-29 21:33:55 +00:00
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error=sign-compare";
|
2018-01-05 08:33:58 +00:00
|
|
|
|
2018-01-21 23:43:05 +00:00
|
|
|
doCheck = true;
|
|
|
|
|
2018-12-29 21:33:55 +00:00
|
|
|
checkPhase = ''
|
|
|
|
make test
|
|
|
|
'';
|
2018-03-05 20:46:18 +00:00
|
|
|
|
2018-01-21 23:43:05 +00:00
|
|
|
postInstall = ''
|
2018-12-29 21:33:55 +00:00
|
|
|
make prefix="$out" install
|
2018-01-21 23:43:05 +00:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|