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