greg: init at 0.4.7

This commit is contained in:
Edward Tjörnhammar 2017-10-12 04:40:46 +02:00
parent 93cc9b93e0
commit 8f17abf29c
No known key found for this signature in database
GPG key ID: 7B82CE4A866B6845
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ stdenv, fetchFromGitHub, pythonPackages }:
with pythonPackages; buildPythonApplication rec {
pname = "greg";
version = "0.4.7";
name = pname + "-" + version;
disabled = !isPy3k;
src = fetchFromGitHub {
owner = "manolomartinez";
repo = pname;
rev = "v" + version;
sha256 = "0bdzgh2k1ppgcvqiasxwp3w89q44s4jgwjidlips3ixx1bzm822v";
};
buildInputs = with pythonPackages; [ feedparser ];
propagatedBuildInputs = buildInputs;
meta = with stdenv.lib; {
homepage = "https://github.com/manolomartinez/greg";
description = "A command-line podcast aggregator";
license = licenses.gpl3;
maintainers = with maintainers; [ edwtjo ];
};
}

View file

@ -1107,6 +1107,10 @@ with pkgs;
gosu = callPackage ../tools/misc/gosu { };
greg = callPackage ../applications/audio/greg {
pythonPackages = python3Packages;
};
gringo = callPackage ../tools/misc/gringo { scons = scons_2_5_1; };
gti = callPackage ../tools/misc/gti { };