Skip to content

Commit

Permalink
greg: init at 0.4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
edwtjo committed Oct 27, 2017
1 parent 93cc9b9 commit 8f17abf
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pkgs/applications/audio/greg/default.nix
@@ -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 ];
};
}
4 changes: 4 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -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 { };
Expand Down

0 comments on commit 8f17abf

Please sign in to comment.