2020-06-27 12:43:12 +02:00
|
|
|
{ stdenv, rustPlatform, fetchFromGitHub, stfl, sqlite, curl, gettext, pkg-config, libxml2, json_c, ncurses
|
2020-09-22 16:27:17 +02:00
|
|
|
, asciidoctor, libiconv, Security, Foundation, makeWrapper }:
|
2018-01-05 09:33:58 +01:00
|
|
|
|
2018-12-29 22:33:55 +01:00
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-08-31 13:41:23 +02:00
|
|
|
pname = "newsboat";
|
2020-09-22 16:27:17 +02:00
|
|
|
version = "2.21";
|
2018-01-05 09:33:58 +01:00
|
|
|
|
2019-12-22 16:31:10 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "newsboat";
|
|
|
|
repo = "newsboat";
|
|
|
|
rev = "r${version}";
|
2020-09-22 16:27:17 +02:00
|
|
|
sha256 = "0ignfmh5193bigvk9f057r0r4yaxymxv2afycn2b98w05gljccb6";
|
2018-01-05 09:33:58 +01:00
|
|
|
};
|
|
|
|
|
2020-09-22 16:27:17 +02:00
|
|
|
cargoSha256 = "16652i2hbs6d3fam2hdlc947i5nrb3na186zfcb4nfh7hnb7lh8g";
|
2018-12-29 22:33:55 +01:00
|
|
|
|
2019-03-19 17:03:03 +01:00
|
|
|
postPatch = ''
|
2018-01-05 09:33:58 +01:00
|
|
|
substituteInPlace Makefile --replace "|| true" ""
|
2020-09-22 16:27:17 +02:00
|
|
|
''
|
|
|
|
# TODO: Check if that's still needed
|
|
|
|
+ stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
# Allow other ncurses versions on Darwin
|
|
|
|
substituteInPlace config.sh \
|
|
|
|
--replace "ncurses5.4" "ncurses"
|
|
|
|
''
|
|
|
|
;
|
2018-01-05 09:33:58 +01:00
|
|
|
|
2020-03-23 09:12:19 +01:00
|
|
|
nativeBuildInputs = [
|
2020-06-27 12:43:12 +02:00
|
|
|
pkg-config
|
2020-03-23 09:12:19 +01:00
|
|
|
asciidoctor
|
2020-03-29 10:03:21 +02:00
|
|
|
gettext
|
2020-05-14 17:28:24 +02:00
|
|
|
] ++ stdenv.lib.optionals stdenv.isDarwin [ makeWrapper ncurses ];
|
2018-12-29 22:33:55 +01:00
|
|
|
|
2020-03-29 10:03:21 +02:00
|
|
|
buildInputs = [ stfl sqlite curl libxml2 json_c ncurses ]
|
2020-09-22 16:27:17 +02:00
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ Security Foundation libiconv gettext ];
|
2018-01-05 09:33:58 +01:00
|
|
|
|
2018-12-29 22:33:55 +01:00
|
|
|
postBuild = ''
|
2020-05-14 17:28:24 +02:00
|
|
|
make prefix="$out"
|
2018-12-29 22:33:55 +01:00
|
|
|
'';
|
2018-01-05 09:33:58 +01:00
|
|
|
|
2020-03-23 09:13:15 +01:00
|
|
|
# TODO: Check if that's still needed
|
|
|
|
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin " -Wno-error=format-security";
|
2018-01-05 09:33:58 +01:00
|
|
|
|
2020-09-22 16:27:17 +02:00
|
|
|
# https://github.com/NixOS/nixpkgs/pull/98471#issuecomment-703100014 . We set
|
|
|
|
# these for all platforms, since upstream's gettext crate behavior might
|
|
|
|
# change in the future.
|
|
|
|
GETTEXT_LIB_DIR = "${stdenv.lib.getLib gettext}/lib";
|
|
|
|
GETTEXT_INCLUDE_DIR = "${stdenv.lib.getDev gettext}/include";
|
|
|
|
GETTEXT_BIN_DIR = "${stdenv.lib.getBin gettext}/bin";
|
|
|
|
|
2018-01-22 00:43:05 +01:00
|
|
|
doCheck = true;
|
|
|
|
|
2020-03-23 09:13:00 +01:00
|
|
|
preCheck = ''
|
2018-12-29 22:33:55 +01:00
|
|
|
make test
|
|
|
|
'';
|
2018-03-05 21:46:18 +01:00
|
|
|
|
2018-01-22 00:43:05 +01:00
|
|
|
postInstall = ''
|
2018-12-29 22:33:55 +01:00
|
|
|
make prefix="$out" install
|
2018-01-22 00:43:05 +01:00
|
|
|
cp -r contrib $out
|
|
|
|
'' + stdenv.lib.optionalString stdenv.isDarwin ''
|
2018-01-05 09:33:58 +01:00
|
|
|
for prog in $out/bin/*; do
|
|
|
|
wrapProgram "$prog" --prefix DYLD_LIBRARY_PATH : "${stfl}/lib"
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-03-23 09:12:30 +01:00
|
|
|
homepage = "https://newsboat.org/";
|
2019-07-06 21:28:16 +02:00
|
|
|
description = "A fork of Newsbeuter, an RSS/Atom feed reader for the text console";
|
2018-01-22 00:43:05 +01:00
|
|
|
maintainers = with maintainers; [ dotlambda nicknovitski ];
|
2018-01-05 09:33:58 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|