Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a3cd1b8fdab8
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1316e4a7457d
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on May 26, 2019

  1. ytcc: init at 1.8.1

    marius851000 committed May 26, 2019
    Copy the full SHA
    8ca86c7 View commit details
  2. Merge pull request #61998 from marius851000/ytcc

    ytcc: init at 1.8.1
    aanderse authored May 26, 2019
    Copy the full SHA
    1316e4a View commit details
Showing with 27 additions and 0 deletions.
  1. +25 −0 pkgs/tools/networking/ytcc/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
25 changes: 25 additions & 0 deletions pkgs/tools/networking/ytcc/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{ lib, python3Packages, fetchFromGitHub, gettext }:

python3Packages.buildPythonApplication rec {
pname = "ytcc";
version = "1.8.1";

src = fetchFromGitHub {
owner = "woefe";
repo = "ytcc";
rev = "v${version}";
sha256 = "080p145j5pg8db88kb0y3x1pfc3v4aj3w68pdihlmi68dhjdr7i7";
};

doCheck = false; # try to access /homeless-shelter
propagatedBuildInputs = with python3Packages; [ feedparser lxml sqlalchemy youtube-dl ];

nativeBuildInputs = [ gettext ];

meta = {
description = "Command Line tool to keep track of your favourite YouTube channels without signing up for a Google account";
homepage = "https://github.com/woefe/ytcc";
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ marius851000 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -21121,6 +21121,8 @@ in

youtube-viewer = perlPackages.WWWYoutubeViewer;

ytcc = callPackage ../tools/networking/ytcc { };

zam-plugins = callPackage ../applications/audio/zam-plugins { };

zanshin = libsForQt5.callPackage ../applications/office/zanshin {