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