mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 17:41:12 +00:00
48 lines
1.4 KiB
Nix
48 lines
1.4 KiB
Nix
{ stdenv, fetchurl, stfl, sqlite, curl, gettext, pkgconfig, libxml2, json_c, ncurses
|
|
, asciidoc, docbook_xml_dtd_45, libxslt, docbook_xsl, libiconv, makeWrapper }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "newsboat-${version}";
|
|
version = "2.13";
|
|
|
|
src = fetchurl {
|
|
url = "https://newsboat.org/releases/${version}/${name}.tar.xz";
|
|
sha256 = "0pik1d98ydzqi6055vdbkjg5krwifbk2hy2f5jp5p1wcy2s16dn7";
|
|
};
|
|
|
|
prePatch = ''
|
|
substituteInPlace Makefile --replace "|| true" ""
|
|
# Allow other ncurses versions on Darwin
|
|
substituteInPlace config.sh \
|
|
--replace "ncurses5.4" "ncurses"
|
|
'';
|
|
|
|
nativeBuildInputs = [ pkgconfig asciidoc docbook_xml_dtd_45 libxslt docbook_xsl ]
|
|
++ stdenv.lib.optional stdenv.isDarwin [ makeWrapper libiconv ];
|
|
|
|
buildInputs = [ stfl sqlite curl gettext libxml2 json_c ncurses ];
|
|
|
|
makeFlags = [ "prefix=$(out)" ];
|
|
|
|
doCheck = true;
|
|
checkTarget = "test";
|
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error=sign-compare";
|
|
|
|
postInstall = ''
|
|
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;
|
|
};
|
|
}
|