2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, rustPlatform, fetchFromGitHub, stfl, sqlite, curl, gettext, pkg-config, libxml2, json_c, ncurses
|
2020-09-22 15:27:17 +01:00
|
|
|
, asciidoctor, libiconv, Security, Foundation, makeWrapper }:
|
2018-01-05 08:33:58 +00:00
|
|
|
|
2018-12-29 21:33:55 +00:00
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-08-31 12:41:23 +01:00
|
|
|
pname = "newsboat";
|
2021-01-16 09:43:21 +00:00
|
|
|
version = "2.22.1";
|
2018-01-05 08:33:58 +00:00
|
|
|
|
2019-12-22 15:31:10 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "newsboat";
|
|
|
|
repo = "newsboat";
|
|
|
|
rev = "r${version}";
|
2021-01-16 09:43:21 +00:00
|
|
|
sha256 = "1j3z34dhqw0f1v6v2lfwcvzqnm2kr2940bgxibfi0npacp74izh3";
|
2018-01-05 08:33:58 +00:00
|
|
|
};
|
|
|
|
|
2021-01-16 09:43:21 +00:00
|
|
|
cargoSha256 = "08ywaka1lib8yrqjmfx1i37f7b33y3i6jj7f50pwhw8n6lr9f7lc";
|
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" ""
|
2020-09-22 15:27:17 +01:00
|
|
|
''
|
|
|
|
# TODO: Check if that's still needed
|
2021-01-15 05:42:41 +00:00
|
|
|
+ lib.optionalString stdenv.isDarwin ''
|
2020-09-22 15:27:17 +01:00
|
|
|
# Allow other ncurses versions on Darwin
|
|
|
|
substituteInPlace config.sh \
|
|
|
|
--replace "ncurses5.4" "ncurses"
|
|
|
|
''
|
|
|
|
;
|
2018-01-05 08:33:58 +00:00
|
|
|
|
2020-03-23 08:12:19 +00:00
|
|
|
nativeBuildInputs = [
|
2020-06-27 11:43:12 +01:00
|
|
|
pkg-config
|
2020-03-23 08:12:19 +00:00
|
|
|
asciidoctor
|
2020-03-29 09:03:21 +01:00
|
|
|
gettext
|
2021-01-15 05:42:41 +00:00
|
|
|
] ++ lib.optionals stdenv.isDarwin [ makeWrapper ncurses ];
|
2018-12-29 21:33:55 +00:00
|
|
|
|
2020-03-29 09:03:21 +01:00
|
|
|
buildInputs = [ stfl sqlite curl libxml2 json_c ncurses ]
|
2021-01-15 05:42:41 +00:00
|
|
|
++ lib.optionals stdenv.isDarwin [ Security Foundation libiconv gettext ];
|
2018-01-05 08:33:58 +00:00
|
|
|
|
2018-12-29 21:33:55 +00:00
|
|
|
postBuild = ''
|
2020-05-14 16:28:24 +01:00
|
|
|
make prefix="$out"
|
2018-12-29 21:33:55 +00:00
|
|
|
'';
|
2018-01-05 08:33:58 +00:00
|
|
|
|
2020-03-23 08:13:15 +00:00
|
|
|
# TODO: Check if that's still needed
|
2021-01-15 05:42:41 +00:00
|
|
|
NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin " -Wno-error=format-security";
|
2018-01-05 08:33:58 +00:00
|
|
|
|
2020-09-22 15:27:17 +01: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.
|
2021-01-15 05:42:41 +00:00
|
|
|
GETTEXT_LIB_DIR = "${lib.getLib gettext}/lib";
|
|
|
|
GETTEXT_INCLUDE_DIR = "${lib.getDev gettext}/include";
|
|
|
|
GETTEXT_BIN_DIR = "${lib.getBin gettext}/bin";
|
2020-09-22 15:27:17 +01:00
|
|
|
|
2018-01-21 23:43:05 +00:00
|
|
|
doCheck = true;
|
|
|
|
|
2020-03-23 08:13:00 +00:00
|
|
|
preCheck = ''
|
2018-12-29 21:33:55 +00:00
|
|
|
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
|
2021-01-15 05:42:41 +00:00
|
|
|
'' + 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
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-03-23 08:12:30 +00:00
|
|
|
homepage = "https://newsboat.org/";
|
2019-07-06 20:28:16 +01:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|