nixpkgs/pkgs/applications/networking/feedreaders/rawdog/default.nix
R. RyanTM b7b6d61a43 rawdog: 2.22 -> 2.23
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/rawdog/versions
2019-01-22 00:06:03 +02:00

23 lines
576 B
Nix

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