23 lines
580 B
Nix
23 lines
580 B
Nix
{ stdenv, fetchurl, python2Packages }:
|
|
|
|
python2Packages.buildPythonApplication rec {
|
|
pname = "rawdog";
|
|
version = "2.23";
|
|
|
|
src = fetchurl {
|
|
url = "https://offog.org/files/${pname}-${version}.tar.gz";
|
|
sha256 = "18nyg19mwxyqdnykplkqmzb4n27vvrhvp639zai8f81gg9vdbsjp";
|
|
};
|
|
|
|
propagatedBuildInputs = with python2Packages; [ feedparser ];
|
|
|
|
namePrefix = "";
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://offog.org/code/rawdog/";
|
|
description = "RSS Aggregator Without Delusions Of Grandeur";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|