greg: init at 0.4.7
This commit is contained in:
parent
93cc9b93e0
commit
8f17abf29c
26
pkgs/applications/audio/greg/default.nix
Normal file
26
pkgs/applications/audio/greg/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -1107,6 +1107,10 @@ with pkgs;
|
|||||||
|
|
||||||
gosu = callPackage ../tools/misc/gosu { };
|
gosu = callPackage ../tools/misc/gosu { };
|
||||||
|
|
||||||
|
greg = callPackage ../applications/audio/greg {
|
||||||
|
pythonPackages = python3Packages;
|
||||||
|
};
|
||||||
|
|
||||||
gringo = callPackage ../tools/misc/gringo { scons = scons_2_5_1; };
|
gringo = callPackage ../tools/misc/gringo { scons = scons_2_5_1; };
|
||||||
|
|
||||||
gti = callPackage ../tools/misc/gti { };
|
gti = callPackage ../tools/misc/gti { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user