a8ff9be2b6
Add missing deps for Darwin, and tell it where gettext is installed.
74 lines
2.2 KiB
Nix
74 lines
2.2 KiB
Nix
{ stdenv, rustPlatform, fetchFromGitHub, stfl, sqlite, curl, gettext, pkg-config, libxml2, json_c, ncurses
|
|
, asciidoctor, libiconv, Security, Foundation, makeWrapper }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "newsboat";
|
|
version = "2.21";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "newsboat";
|
|
repo = "newsboat";
|
|
rev = "r${version}";
|
|
sha256 = "0ignfmh5193bigvk9f057r0r4yaxymxv2afycn2b98w05gljccb6";
|
|
};
|
|
|
|
cargoSha256 = "16652i2hbs6d3fam2hdlc947i5nrb3na186zfcb4nfh7hnb7lh8g";
|
|
|
|
postPatch = ''
|
|
substituteInPlace Makefile --replace "|| true" ""
|
|
''
|
|
# 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"
|
|
''
|
|
;
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
asciidoctor
|
|
gettext
|
|
] ++ stdenv.lib.optionals stdenv.isDarwin [ makeWrapper ncurses ];
|
|
|
|
buildInputs = [ stfl sqlite curl libxml2 json_c ncurses ]
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ Security Foundation libiconv gettext ];
|
|
|
|
postBuild = ''
|
|
make prefix="$out"
|
|
'';
|
|
|
|
# TODO: Check if that's still needed
|
|
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin " -Wno-error=format-security";
|
|
|
|
# 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";
|
|
|
|
doCheck = true;
|
|
|
|
preCheck = ''
|
|
make test
|
|
'';
|
|
|
|
postInstall = ''
|
|
make prefix="$out" install
|
|
cp -r contrib $out
|
|
'' + stdenv.lib.optionalString stdenv.isDarwin ''
|
|
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";
|
|
maintainers = with maintainers; [ dotlambda nicknovitski ];
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|