nixpkgs/pkgs/applications/networking/feedreaders/rawdog/default.nix

24 lines
620 B
Nix
Raw Normal View History

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