2015-04-28 02:02:55 +02:00
|
|
|
{ stdenv, fetchFromGitHub, cppcheck, libmrss }:
|
|
|
|
|
2015-09-10 01:47:09 +02:00
|
|
|
let version = "2015-09-06"; in
|
2015-04-28 02:02:55 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "rsstail-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2015-09-10 01:47:09 +02:00
|
|
|
sha256 = "1rfzib5fzm0i8wf3njld1lvxgbci0hxxnvp2qx1k4bwpv744xkpx";
|
|
|
|
rev = "16636539e4cc75dafbfa7f05539769be7dad4b66";
|
2015-04-28 02:02:55 +02:00
|
|
|
repo = "rsstail";
|
|
|
|
owner = "flok99";
|
|
|
|
};
|
|
|
|
|
2015-09-10 01:47:09 +02:00
|
|
|
buildInputs = [ libmrss ]
|
|
|
|
++ stdenv.lib.optional doCheck cppcheck;
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace Makefile --replace -liconv ""
|
|
|
|
'';
|
|
|
|
|
|
|
|
makeFlags = "prefix=$(out)";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2015-04-28 02:02:55 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
inherit version;
|
|
|
|
description = "Monitor RSS feeds for new entries";
|
|
|
|
longDescription = ''
|
|
|
|
RSSTail is more or less an RSS reader: it monitors an RSS feed and if it
|
|
|
|
detects a new entry it'll emit only that new entry.
|
|
|
|
'';
|
|
|
|
homepage = http://www.vanheusden.com/rsstail/;
|
2015-05-28 19:20:29 +02:00
|
|
|
license = licenses.gpl2Plus;
|
2015-04-28 02:02:55 +02:00
|
|
|
platforms = with platforms; linux;
|
|
|
|
maintainers = with maintainers; [ nckx ];
|
|
|
|
};
|
|
|
|
}
|