mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-07 05:51:24 +03:00
Merge pull request #33767 from corngood/youtube-dl-darwin
youtube-dl: disable phantomjs support on darwin by default
This commit is contained in:
commit
cd960896d0
@ -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 }:
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user