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

23 lines
578 B
Nix
Raw Normal View History

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 {
2019-08-31 13:41:23 +02:00
pname = "rawdog";
version = "2.23";
2014-12-24 04:30:54 +01:00
src = fetchurl {
2019-08-31 13:41:23 +02:00
url = "https://offog.org/files/${pname}-${version}.tar.gz";
sha256 = "18nyg19mwxyqdnykplkqmzb4n27vvrhvp639zai8f81gg9vdbsjp";
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 = "";
2016-01-04 04:23:32 +01:00
meta = with stdenv.lib; {
2017-08-21 17:49:14 +02:00
homepage = https://offog.org/code/rawdog/;
2016-01-04 04:23:32 +01:00
description = "RSS Aggregator Without Delusions Of Grandeur";
license = licenses.gpl2;
platforms = platforms.unix;
2014-12-24 04:30:54 +01:00
};
}