b747a86f8f
In hopes of working around https://github.com/NixOS/nixpkgs/issues/60845. This fetches a gz archive instead of xz and also fetches the archive from a different source, hopefully avoiding the issue (whatever ist is caused by). In addition to that, I think that building directly from VCS is generally cleaner and more flexible for the following reasons: - It cuts out and unnecessary middle step. - It makes sure the version users install is equal to the version users may have vetted. - It makes it easy to develop patches or bisect changes by simply checking out a different rev. - It avoids using upstream-provided "binary" artifacts like those generated by autotools.
59 lines
1.7 KiB
Nix
59 lines
1.7 KiB
Nix
{ stdenv, rustPlatform, fetchFromGitHub, stfl, sqlite, curl, gettext, pkgconfig, libxml2, json_c, ncurses
|
|
, asciidoc, docbook_xml_dtd_45, libxslt, docbook_xsl, libiconv, Security, makeWrapper }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "newsboat";
|
|
version = "2.17.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "newsboat";
|
|
repo = "newsboat";
|
|
rev = "r${version}";
|
|
sha256 = "1xdy45rc3zzmf59zzszq9wpks6pvc0flmmwak39ww7laj2vgb4a7";
|
|
};
|
|
|
|
cargoSha256 = "0db4j6y43gacazrvcmq823fzl5pdfdlg8mkjpysrw6h9fxisq83f";
|
|
|
|
postPatch = ''
|
|
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.optionals stdenv.isDarwin [ makeWrapper libiconv ];
|
|
|
|
buildInputs = [ stfl sqlite curl gettext libxml2 json_c ncurses ]
|
|
++ stdenv.lib.optional stdenv.isDarwin Security;
|
|
|
|
postBuild = ''
|
|
make
|
|
'';
|
|
|
|
NIX_CFLAGS_COMPILE = [ "-Wno-error=sign-compare" ]
|
|
++ stdenv.lib.optional stdenv.isDarwin "-Wno-error=format-security";
|
|
|
|
doCheck = true;
|
|
|
|
checkPhase = ''
|
|
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;
|
|
};
|
|
}
|