youtube-dl: disable phantomjs support on darwin by default
This commit is contained in:
parent
6d3ff29d03
commit
42d5dd68f8
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchurl, buildPythonApplication
|
{ stdenv, targetPlatform, fetchurl, buildPythonApplication
|
||||||
, zip, ffmpeg, rtmpdump, phantomjs2, atomicparsley, pycryptodome, pandoc
|
, zip, ffmpeg, rtmpdump, phantomjs2, atomicparsley, pycryptodome, pandoc
|
||||||
# Pandoc is required to build the package's man page. Release tarballs contain a
|
# 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
|
# formatted man page already, though, it will still be installed. We keep the
|
||||||
|
@ -8,7 +8,7 @@
|
||||||
, generateManPage ? false
|
, generateManPage ? false
|
||||||
, ffmpegSupport ? true
|
, ffmpegSupport ? true
|
||||||
, rtmpSupport ? true
|
, rtmpSupport ? true
|
||||||
, phantomjsSupport ? true
|
, phantomjsSupport ? !targetPlatform.isDarwin # phantomjs2 is broken on darwin
|
||||||
, hlsEncryptedSupport ? true
|
, hlsEncryptedSupport ? true
|
||||||
, makeWrapper }:
|
, makeWrapper }:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue