nixpkgs-suyu/pkgs/applications/networking/feedreaders/newsboat/default.nix

63 lines
1.6 KiB
Nix
Raw Normal View History

{ stdenv, rustPlatform, fetchFromGitHub, stfl, sqlite, curl, gettext, pkgconfig, libxml2, json_c, ncurses
, asciidoctor, libiconv, Security, makeWrapper }:
2018-01-05 09:33:58 +01:00
2018-12-29 22:33:55 +01:00
rustPlatform.buildRustPackage rec {
2019-08-31 13:41:23 +02:00
pname = "newsboat";
2020-03-23 09:12:10 +01:00
version = "2.19";
2018-01-05 09:33:58 +01:00
src = fetchFromGitHub {
owner = "newsboat";
repo = "newsboat";
rev = "r${version}";
2020-03-23 09:12:10 +01:00
sha256 = "0yyrq8a90l6pkrczm9qvdg75jhsdq0niwp79vrdpm8rsxqpdmfq7";
2018-01-05 09:33:58 +01:00
};
2020-03-23 09:12:10 +01:00
cargoSha256 = "1q3jf3d80c0ik38qk8jgbhfz5jxv0cy3lzmkyh2l002azp9hvv59";
2018-12-29 22:33:55 +01:00
2019-03-19 17:03:03 +01:00
postPatch = ''
2018-01-05 09:33:58 +01:00
substituteInPlace Makefile --replace "|| true" ""
2018-01-22 00:43:05 +01:00
# Allow other ncurses versions on Darwin
substituteInPlace config.sh \
--replace "ncurses5.4" "ncurses"
2018-01-05 09:33:58 +01:00
'';
nativeBuildInputs = [
pkgconfig
asciidoctor
]
2019-07-06 21:28:16 +02:00
++ stdenv.lib.optionals stdenv.isDarwin [ makeWrapper libiconv ];
2018-12-29 22:33:55 +01:00
buildInputs = [ stfl sqlite curl gettext libxml2 json_c ncurses ]
++ stdenv.lib.optional stdenv.isDarwin Security;
2018-01-05 09:33:58 +01:00
2018-12-29 22:33:55 +01:00
postBuild = ''
make
'';
2018-01-05 09:33:58 +01:00
2019-10-30 12:34:47 +01:00
NIX_CFLAGS_COMPILE = "-Wno-error=sign-compare"
+ stdenv.lib.optionalString stdenv.isDarwin " -Wno-error=format-security";
2018-01-05 09:33:58 +01:00
2018-01-22 00:43:05 +01:00
doCheck = true;
2018-12-29 22:33:55 +01:00
checkPhase = ''
make test
'';
2018-03-05 21:46:18 +01:00
2018-01-22 00:43:05 +01:00
postInstall = ''
2018-12-29 22:33:55 +01:00
make prefix="$out" install
2018-01-22 00:43:05 +01:00
cp -r contrib $out
'' + stdenv.lib.optionalString stdenv.isDarwin ''
2018-01-05 09:33:58 +01:00
for prog in $out/bin/*; do
wrapProgram "$prog" --prefix DYLD_LIBRARY_PATH : "${stfl}/lib"
done
'';
meta = with stdenv.lib; {
2020-03-23 09:12:30 +01:00
homepage = "https://newsboat.org/";
2019-07-06 21:28:16 +02:00
description = "A fork of Newsbeuter, an RSS/Atom feed reader for the text console";
2018-01-22 00:43:05 +01:00
maintainers = with maintainers; [ dotlambda nicknovitski ];
2018-01-05 09:33:58 +01:00
license = licenses.mit;
platforms = platforms.unix;
};
}