obs-studio: add new optional dependencies
This commit adds a new set of optional dependencies introduced with version 21.0 of OBS to allow Lua and Python 3 scripts to be run. If this batch of new dependencies is not desired by the user, then they may set `scriptingSupport` to false to disable it.
This commit is contained in:
parent
0d028c3bee
commit
26f7df6b6a
@ -21,6 +21,11 @@
|
|||||||
, vlc
|
, vlc
|
||||||
, mbedtls
|
, mbedtls
|
||||||
|
|
||||||
|
, scriptingSupport ? true
|
||||||
|
, luajit
|
||||||
|
, swig
|
||||||
|
, python3
|
||||||
|
|
||||||
, alsaSupport ? false
|
, alsaSupport ? false
|
||||||
, alsaLib
|
, alsaLib
|
||||||
, pulseaudioSupport ? false
|
, pulseaudioSupport ? false
|
||||||
@ -68,6 +73,7 @@ in stdenv.mkDerivation rec {
|
|||||||
makeWrapper
|
makeWrapper
|
||||||
mbedtls
|
mbedtls
|
||||||
]
|
]
|
||||||
|
++ optional scriptingSupport [ luajit swig python3 ]
|
||||||
++ optional alsaSupport alsaLib
|
++ optional alsaSupport alsaLib
|
||||||
++ optional pulseaudioSupport libpulseaudio;
|
++ optional pulseaudioSupport libpulseaudio;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user