3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/feedreaders/newsbeuter/default.nix

48 lines
1.4 KiB
Nix
Raw Normal View History

2014-03-13 17:15:28 +00:00
{ stdenv, fetchurl, sqlite, curl, pkgconfig, libxml2, stfl, json-c-0-11, ncurses
, gettext, libiconv, makeWrapper, perl, fetchpatch }:
2013-06-02 07:27:00 +01:00
stdenv.mkDerivation rec {
name = "newsbeuter-2.9";
2013-06-02 07:27:00 +01:00
src = fetchurl {
url = "http://www.newsbeuter.org/downloads/${name}.tar.gz";
sha256 = "1j1x0hgwxz11dckk81ncalgylj5y5fgw5bcmp9qb5hq9kc0vza3l";
2014-03-13 17:15:28 +00:00
2013-06-02 07:27:00 +01:00
};
buildInputs
# use gettext instead of libintlOrEmpty so we have access to the msgfmt
# command
= [ pkgconfig sqlite curl libxml2 stfl json-c-0-11 ncurses gettext perl libiconv ]
2013-06-02 07:27:00 +01:00
++ stdenv.lib.optional stdenv.isDarwin makeWrapper;
preBuild = ''
2014-03-13 17:15:28 +00:00
sed -i -e 110,114d config.sh
2013-07-04 03:06:39 +01:00
sed -i "1 s%^.*$%#!${perl}/bin/perl%" txt2h.pl
2013-06-02 07:27:00 +01:00
export LDFLAGS=-lncursesw
'';
patches = [
(fetchpatch {
url = "https://github.com/akrennmair/newsbeuter/commit/cdacfbde9fe3ae2489fc96d35dfb7d263ab03f50.patch";
sha256 = "1lhvn63cqjpikwsr6zzndb1p5y140vvphlg85fazwx4xpzd856d9";
})
];
installFlags = [ "DESTDIR=$(out)" "prefix=" ];
installPhase = stdenv.lib.optionalString stdenv.isDarwin ''
for prog in $out/bin/*; do
wrapProgram "$prog" --prefix DYLD_LIBRARY_PATH : "${stfl}/lib"
done
'';
2013-06-02 07:27:00 +01:00
meta = {
homepage = http://www.newsbeuter.org;
description = "An open-source RSS/Atom feed reader for text terminals";
maintainers = with stdenv.lib.maintainers; [ lovek323 ];
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.unix;
};
}