1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/applications/networking/feedreaders/rawdog/default.nix

22 lines
564 B
Nix
Raw Normal View History

2014-12-24 03:30:54 +00:00
{ stdenv, fetchurl, pythonPackages }:
pythonPackages.buildPythonPackage rec {
name = "rawdog-2.20";
2014-12-24 03:30:54 +00:00
src = fetchurl {
url = "http://offog.org/files/${name}.tar.gz";
2014-12-24 03:30:54 +00:00
sha256 = "0a63b26cc111b0deca441f498177b49be0330760c5c0e24584cdb9ba1e7fd5a6";
};
propagatedBuildInputs = with pythonPackages; [ feedparser ];
2014-12-24 19:13:39 +00:00
namePrefix = "";
2014-12-24 03:30:54 +00:00
meta = {
homepage = "http://offog.org/code/rawdog/";
2015-04-28 09:54:58 +01:00
description = "An RSS Aggregator Without Delusions Of Grandeur";
license = stdenv.lib.licenses.gpl2;
platform = stdenv.lib.platforms.unix;
2014-12-24 03:30:54 +00:00
};
}