Merge pull request #33767 from corngood/youtube-dl-darwin

youtube-dl: disable phantomjs support on darwin by default
This commit is contained in:
Jörg Thalheim 2018-01-13 16:57:01 +00:00 committed by GitHub
commit cd960896d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, buildPythonApplication
{ stdenv, targetPlatform, fetchurl, buildPythonApplication
, zip, ffmpeg, rtmpdump, phantomjs2, atomicparsley, pycryptodome, pandoc
# Pandoc is required to build the package's man page. Release tarballs contain a
# formatted man page already, though, it will still be installed. We keep the
@ -8,7 +8,7 @@
, generateManPage ? false
, ffmpegSupport ? true
, rtmpSupport ? true
, phantomjsSupport ? true
, phantomjsSupport ? !targetPlatform.isDarwin # phantomjs2 is broken on darwin
, hlsEncryptedSupport ? true
, makeWrapper }: