rsstail: 2.0 -> 2015-09-06
There are no releases, so don't let's pretend.
This commit is contained in:
parent
9e408aa1c6
commit
26eaa93094
@ -1,29 +1,16 @@
|
|||||||
{ stdenv, fetchFromGitHub, cppcheck, libmrss }:
|
{ stdenv, fetchFromGitHub, cppcheck, libmrss }:
|
||||||
|
|
||||||
let version = "2.0"; in
|
let version = "2015-09-06"; in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "rsstail-${version}";
|
name = "rsstail-${version}";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
sha256 = "0fbsyl5bdxr2g25ps7kd34sa0mzggklbg4v7qss68gh82zdp16ch";
|
sha256 = "1rfzib5fzm0i8wf3njld1lvxgbci0hxxnvp2qx1k4bwpv744xkpx";
|
||||||
rev = "69dc5e30439b89c037aa49c5af861f28df607c72";
|
rev = "16636539e4cc75dafbfa7f05539769be7dad4b66";
|
||||||
repo = "rsstail";
|
repo = "rsstail";
|
||||||
owner = "flok99";
|
owner = "flok99";
|
||||||
};
|
};
|
||||||
|
|
||||||
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/;
|
|
||||||
license = licenses.gpl2Plus;
|
|
||||||
platforms = with platforms; linux;
|
|
||||||
maintainers = with maintainers; [ nckx ];
|
|
||||||
};
|
|
||||||
|
|
||||||
buildInputs = [ libmrss ]
|
buildInputs = [ libmrss ]
|
||||||
++ stdenv.lib.optional doCheck cppcheck;
|
++ stdenv.lib.optional doCheck cppcheck;
|
||||||
|
|
||||||
@ -35,4 +22,17 @@ stdenv.mkDerivation rec {
|
|||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
|
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/;
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
|
platforms = with platforms; linux;
|
||||||
|
maintainers = with maintainers; [ nckx ];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user