1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 21:50:55 +00:00

Merge pull request #21978 from goetzst/youtube-dl

youtube-dl: 2017.01.14 -> 2017.01.18
This commit is contained in:
Jörg Thalheim 2017-01-19 09:30:02 +01:00 committed by GitHub
commit 485a1ac94b

View file

@ -15,11 +15,11 @@ with stdenv.lib;
buildPythonApplication rec {
name = "youtube-dl-${version}";
version = "2017.01.14";
version = "2017.01.18";
src = fetchurl {
url = "https://yt-dl.org/downloads/${version}/${name}.tar.gz";
sha256 = "76c8bd77db6c820bfa72f1e2a873101ca736fd1d9954ccebf349fa7caef99cca";
sha256 = "7c16f3ce7cf8a673a4c531e4a1fc10801467a61732cb65430e40b3ab8b2f2d2e";
};
buildInputs = [ makeWrapper zip ] ++ optional generateManPage pandoc;