summary refs log tree commit diff
path: root/pkgs/applications/networking/feedreaders/rawdog/default.nix
blob: e5e8f823d277daba52f81b77203c0d96f4e54e4e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchurl, pythonPackages }:

pythonPackages.buildPythonPackage rec {
  name = "rawdog-${version}";
  version = "2.21";

  src = fetchurl {
    url = "http://offog.org/files/${name}.tar.gz";
    sha256 = "0f5z7b70pyhjl6s28hgxninsr86s4dj5ycd50sv6bfz4hm1c2030";
  };

  propagatedBuildInputs = with pythonPackages; [ feedparser ];

  namePrefix = "";
  
  meta = with stdenv.lib; {
    homepage = "http://offog.org/code/rawdog/";
    description = "RSS Aggregator Without Delusions Of Grandeur";
    license = licenses.gpl2;
    platform = platforms.unix;
    maintainers = with maintainers; [ nckx ];
  };
}