Merge pull request #53780 from OPNA2608/obs-scripting

obs-studio: add new optional dependencies
This commit is contained in:
Jörg Thalheim 2019-01-11 11:43:27 +00:00 committed by GitHub
commit b4df112941
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;