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

Commits on May 11, 2018

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

    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
    - ran ‘/nix/store/0shcgv9l70mwrzwsii5hgya7nx89j6w6-youtube-dl-2018.05.09/bin/.youtube-dl-wrapped -h’ got 0 exit code
    - ran ‘/nix/store/0shcgv9l70mwrzwsii5hgya7nx89j6w6-youtube-dl-2018.05.09/bin/.youtube-dl-wrapped --help’ got 0 exit code
    - ran ‘/nix/store/0shcgv9l70mwrzwsii5hgya7nx89j6w6-youtube-dl-2018.05.09/bin/.youtube-dl-wrapped --version’ and found version 2018.05.09
    - ran ‘/nix/store/0shcgv9l70mwrzwsii5hgya7nx89j6w6-youtube-dl-2018.05.09/bin/youtube-dl -h’ got 0 exit code
    - ran ‘/nix/store/0shcgv9l70mwrzwsii5hgya7nx89j6w6-youtube-dl-2018.05.09/bin/youtube-dl --help’ got 0 exit code
    - ran ‘/nix/store/0shcgv9l70mwrzwsii5hgya7nx89j6w6-youtube-dl-2018.05.09/bin/youtube-dl --version’ and found version 2018.05.09
    - found 2018.05.09 with grep in /nix/store/0shcgv9l70mwrzwsii5hgya7nx89j6w6-youtube-dl-2018.05.09
    - directory tree listing: https://gist.github.com/e65e7afdbb0bcdbcf461cd2a77c6ad50
    R. RyanTM committed May 11, 2018
    Copy the full SHA
    97dde3c View commit details
  2. Merge pull request #40310 from r-ryantm/auto-update/youtube-dl

    python27Packages.youtube-dl: 2018.05.01 -> 2018.05.09
    Fuuzetsu authored May 11, 2018
    Copy the full SHA
    2230b07 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.01";
version = "2018.05.09";

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

nativeBuildInputs = [ makeWrapper ];