nixpkgs/pkgs/applications/networking/feedreaders/rawdog/default.nix
Tobias Geerinckx-Rice 0f84673f3d
Remove nckx as a maintainer for all packages
Goodbye, and thanks for all the Nix...
2018-01-16 23:00:49 +01:00

23 lines
576 B
Nix

{ stdenv, fetchurl, python2Packages }:
python2Packages.buildPythonApplication rec {
name = "rawdog-${version}";
version = "2.22";
src = fetchurl {
url = "https://offog.org/files/${name}.tar.gz";
sha256 = "01ircwl80xi5lamamsb22i7vmsh2ysq3chn9mbsdhqic2i32hcz0";
};
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;
};
}