mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-17 02:14:08 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
26 lines
634 B
Nix
26 lines
634 B
Nix
{ lib, fetchFromGitHub, pythonPackages }:
|
|
|
|
with pythonPackages; buildPythonApplication rec {
|
|
pname = "greg";
|
|
version = "0.4.8";
|
|
|
|
disabled = !isPy3k;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "manolomartinez";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "sha256-o4+tXVJTgT52JyJOC+Glr2cvZjbTaZL8TIsmz+A4vE4=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ setuptools feedparser ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/manolomartinez/greg";
|
|
description = "Command-line podcast aggregator";
|
|
mainProgram = "greg";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ edwtjo ];
|
|
};
|
|
}
|