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: f5ca57b6d909
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a48088769f1c
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on May 20, 2018

  1. python27Packages.youtube-dl: 2018.05.09 -> 2018.05.18

    Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
    
    This update was made based on information from https://repology.org/metapackage/youtube-dl/versions.
    
    These checks were done:
    
    - built on NixOS
    - /nix/store/xdrcf96p90hk4cdpwjcafvqz9dhpab0p-youtube-dl-2018.05.18/bin/.youtube-dl-wrapped passed the binary check.
    - /nix/store/xdrcf96p90hk4cdpwjcafvqz9dhpab0p-youtube-dl-2018.05.18/bin/youtube-dl passed the binary check.
    - 2 of 2 passed binary check by having a zero exit code.
    - 2 of 2 passed binary check by having the new version present in output.
    - found 2018.05.18 with grep in /nix/store/xdrcf96p90hk4cdpwjcafvqz9dhpab0p-youtube-dl-2018.05.18
    - directory tree listing: https://gist.github.com/d85bbc7695f5c7236d2de010c6381975
    - du listing: https://gist.github.com/c5ad848ac823c72e329d20063defbc67
    R. RyanTM committed May 20, 2018
    Copy the full SHA
    69038bf View commit details
  2. Merge pull request #40823 from r-ryantm/auto-update/youtube-dl

    python27Packages.youtube-dl: 2018.05.09 -> 2018.05.18
    Fuuzetsu authored May 20, 2018
    Copy the full SHA
    a480887 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/tools/misc/youtube-dl/default.nix
4 changes: 2 additions & 2 deletions pkgs/tools/misc/youtube-dl/default.nix
Original file line number Diff line number Diff line change
@@ -16,11 +16,11 @@ with stdenv.lib;
buildPythonApplication rec {

pname = "youtube-dl";
version = "2018.05.09";
version = "2018.05.18";

src = fetchurl {
url = "https://yt-dl.org/downloads/${version}/${pname}-${version}.tar.gz";
sha256 = "0sl4bi2jls3417rd62awbqdq1b6wskkjbfwpnyw4a61qarfxid1d";
sha256 = "11r0hv6885w8k4m307kvf9545vr5a3ym9bf7szghvbcgmgc8lm5w";
};

nativeBuildInputs = [ makeWrapper ];