2016-11-09 02:52:53 -08:00
|
|
|
{ stdenv, fetchurl, python2Packages }:
|
2014-12-23 19:30:54 -08:00
|
|
|
|
2016-11-09 02:52:53 -08:00
|
|
|
python2Packages.buildPythonApplication rec {
|
2016-01-03 19:23:29 -08:00
|
|
|
name = "rawdog-${version}";
|
2017-08-21 08:49:14 -07:00
|
|
|
version = "2.22";
|
2014-12-23 23:06:49 -08:00
|
|
|
|
2014-12-23 19:30:54 -08:00
|
|
|
src = fetchurl {
|
2017-08-21 08:49:14 -07:00
|
|
|
url = "https://offog.org/files/${name}.tar.gz";
|
|
|
|
sha256 = "01ircwl80xi5lamamsb22i7vmsh2ysq3chn9mbsdhqic2i32hcz0";
|
2014-12-23 19:30:54 -08:00
|
|
|
};
|
|
|
|
|
2016-11-09 02:52:53 -08:00
|
|
|
propagatedBuildInputs = with python2Packages; [ feedparser ];
|
2014-12-24 11:13:39 -08:00
|
|
|
|
|
|
|
namePrefix = "";
|
2017-05-02 16:14:03 -07:00
|
|
|
|
2016-01-03 19:23:32 -08:00
|
|
|
meta = with stdenv.lib; {
|
2017-08-21 08:49:14 -07:00
|
|
|
homepage = https://offog.org/code/rawdog/;
|
2016-01-03 19:23:32 -08:00
|
|
|
description = "RSS Aggregator Without Delusions Of Grandeur";
|
|
|
|
license = licenses.gpl2;
|
2017-05-02 16:14:03 -07:00
|
|
|
platforms = platforms.unix;
|
2014-12-23 19:30:54 -08:00
|
|
|
};
|
|
|
|
}
|