youtube-dl: disable phantomjs support on darwin by default

This commit is contained in:
David McFarland 2018-01-11 23:14:35 -04:00
parent 6d3ff29d03
commit 42d5dd68f8

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 }: