9fb8020e4e
This will probably be mandatory soon, and is a step in the right direction. Removes the deprecated meta.version, and move some meta sections to the end of the file where I should have put them in the first place.
24 lines
616 B
Nix
24 lines
616 B
Nix
{ stdenv, fetchurl, pythonPackages }:
|
|
|
|
pythonPackages.buildPythonPackage rec {
|
|
name = "rawdog-${version}";
|
|
version = "2.21";
|
|
|
|
src = fetchurl {
|
|
url = "http://offog.org/files/${name}.tar.gz";
|
|
sha256 = "0f5z7b70pyhjl6s28hgxninsr86s4dj5ycd50sv6bfz4hm1c2030";
|
|
};
|
|
|
|
propagatedBuildInputs = with pythonPackages; [ feedparser ];
|
|
|
|
namePrefix = "";
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "http://offog.org/code/rawdog/";
|
|
description = "RSS Aggregator Without Delusions Of Grandeur";
|
|
license = licenses.gpl2;
|
|
platform = platforms.unix;
|
|
maintainers = with maintainers; [ nckx ];
|
|
};
|
|
}
|