mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 17:41:12 +00:00
f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
24 lines
620 B
Nix
24 lines
620 B
Nix
{ stdenv, fetchurl, python2Packages }:
|
|
|
|
python2Packages.buildPythonApplication rec {
|
|
name = "rawdog-${version}";
|
|
version = "2.21";
|
|
|
|
src = fetchurl {
|
|
url = "http://offog.org/files/${name}.tar.gz";
|
|
sha256 = "0f5z7b70pyhjl6s28hgxninsr86s4dj5ycd50sv6bfz4hm1c2030";
|
|
};
|
|
|
|
propagatedBuildInputs = with python2Packages; [ feedparser ];
|
|
|
|
namePrefix = "";
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://offog.org/code/rawdog/;
|
|
description = "RSS Aggregator Without Delusions Of Grandeur";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ nckx ];
|
|
};
|
|
}
|