2024-09-23 16:36:58 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
rustPlatform,
|
|
|
|
fetchFromGitHub,
|
|
|
|
stfl,
|
|
|
|
sqlite,
|
|
|
|
curl,
|
|
|
|
gettext,
|
|
|
|
pkg-config,
|
|
|
|
libxml2,
|
|
|
|
json_c,
|
|
|
|
ncurses,
|
|
|
|
darwin,
|
|
|
|
asciidoctor,
|
|
|
|
libiconv,
|
|
|
|
makeWrapper,
|
|
|
|
nix-update-script,
|
|
|
|
}:
|
2018-01-05 08:33:58 +00:00
|
|
|
|
2018-12-29 21:33:55 +00:00
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-08-31 11:41:23 +00:00
|
|
|
pname = "newsboat";
|
2024-09-23 16:44:38 +00:00
|
|
|
version = "2.37";
|
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}";
|
2024-09-23 16:44:38 +00:00
|
|
|
hash = "sha256-RNvzGGvicujqkRWVHBwnlROuhpH5XqPNWmx6q7n4g+U=";
|
2018-01-05 08:33:58 +00:00
|
|
|
};
|
|
|
|
|
2024-09-23 16:44:38 +00:00
|
|
|
cargoHash = "sha256-EBA+ucegXr3YtU2K7bhwli8O+knnugMMUuSksDuaY9E=";
|
2021-03-22 09:49:33 +00:00
|
|
|
|
|
|
|
# TODO: Check if that's still needed
|
|
|
|
postPatch = lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
|
|
# Allow other ncurses versions on Darwin
|
|
|
|
substituteInPlace config.sh \
|
|
|
|
--replace "ncurses5.4" "ncurses"
|
|
|
|
'';
|
2018-01-05 08:33:58 +00:00
|
|
|
|
2024-09-23 16:36:58 +00:00
|
|
|
nativeBuildInputs =
|
|
|
|
[
|
|
|
|
pkg-config
|
|
|
|
asciidoctor
|
|
|
|
gettext
|
|
|
|
]
|
|
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
|
|
makeWrapper
|
|
|
|
ncurses
|
|
|
|
];
|
2018-12-29 21:33:55 +00:00
|
|
|
|
2024-09-23 16:36:58 +00:00
|
|
|
buildInputs =
|
|
|
|
[
|
|
|
|
stfl
|
|
|
|
sqlite
|
|
|
|
curl
|
|
|
|
libxml2
|
|
|
|
json_c
|
|
|
|
ncurses
|
|
|
|
]
|
|
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin (
|
|
|
|
with darwin.apple_sdk.frameworks;
|
|
|
|
[
|
|
|
|
Security
|
|
|
|
Foundation
|
|
|
|
libiconv
|
|
|
|
gettext
|
|
|
|
]
|
|
|
|
);
|
2018-01-05 08:33:58 +00:00
|
|
|
|
2018-12-29 21:33:55 +00:00
|
|
|
postBuild = ''
|
2023-01-08 09:56:01 +00:00
|
|
|
make -j $NIX_BUILD_CORES prefix="$out"
|
2018-12-29 21:33:55 +00:00
|
|
|
'';
|
2018-01-05 08:33:58 +00:00
|
|
|
|
2020-09-22 14:27:17 +00: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 14:27:17 +00:00
|
|
|
|
2018-01-21 23:43:05 +00:00
|
|
|
doCheck = true;
|
|
|
|
|
2020-03-23 08:13:00 +00:00
|
|
|
preCheck = ''
|
2023-01-08 09:56:01 +00:00
|
|
|
make -j $NIX_BUILD_CORES test
|
2018-12-29 21:33:55 +00:00
|
|
|
'';
|
2018-03-05 20:46:18 +00:00
|
|
|
|
2024-09-23 16:36:58 +00:00
|
|
|
postInstall =
|
|
|
|
''
|
|
|
|
make -j $NIX_BUILD_CORES prefix="$out" install
|
|
|
|
''
|
2024-09-23 16:44:38 +00:00
|
|
|
+ lib.optionalString stdenv.hostPlatform.isDarwin ''
|
2024-09-23 16:36:58 +00:00
|
|
|
for prog in $out/bin/*; do
|
|
|
|
wrapProgram "$prog" --prefix DYLD_LIBRARY_PATH : "${stfl}/lib"
|
|
|
|
done
|
|
|
|
'';
|
2018-01-05 08:33:58 +00:00
|
|
|
|
2023-03-27 19:48:54 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = nix-update-script { };
|
|
|
|
};
|
|
|
|
|
2023-09-25 12:22:12 +00:00
|
|
|
meta = {
|
2024-09-23 16:36:58 +00:00
|
|
|
homepage = "https://newsboat.org/";
|
|
|
|
changelog = "https://github.com/newsboat/newsboat/blob/${src.rev}/CHANGELOG.md";
|
2019-07-06 19:28:16 +00:00
|
|
|
description = "Fork of Newsbeuter, an RSS/Atom feed reader for the text console";
|
2024-09-23 16:36:58 +00:00
|
|
|
maintainers = with lib.maintainers; [
|
|
|
|
dotlambda
|
|
|
|
nicknovitski
|
|
|
|
];
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
platforms = lib.platforms.unix;
|
2024-08-23 14:11:27 +00:00
|
|
|
mainProgram = "newsboat";
|
2018-01-05 08:33:58 +00:00
|
|
|
};
|
|
|
|
}
|