Unverified Commit 2ba42c0d authored by Franz Pletz's avatar Franz Pletz Committed by GitHub
Browse files

Merge pull request #273575 from eclairevoyant/obs

obs-studio: fix build with alsa/pulseaudio/pipewire support disabled
parents d3b82fd0 02327600
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -162,6 +162,9 @@ stdenv.mkDerivation (finalAttrs: {
    "-DENABLE_JACK=ON"
    (lib.cmakeBool "ENABLE_QSV11" stdenv.hostPlatform.isx86_64)
    (lib.cmakeBool "ENABLE_LIBFDK" withFdk)
    (lib.cmakeBool "ENABLE_ALSA" alsaSupport)
    (lib.cmakeBool "ENABLE_PULSEAUDIO" pulseaudioSupport)
    (lib.cmakeBool "ENABLE_PIPEWIRE" pipewireSupport)
  ];

  dontWrapGApps = true;
@@ -199,7 +202,7 @@ stdenv.mkDerivation (finalAttrs: {
      video content, efficiently
    '';
    homepage = "https://obsproject.com";
    maintainers = with maintainers; [ jb55 MP2E materus fpletz ];
    maintainers = with maintainers; [ eclairevoyant jb55 MP2E materus fpletz ];
    license = with licenses; [ gpl2Plus ] ++ optional withFdk fraunhofer-fdk;
    platforms = [ "x86_64-linux" "i686-linux" "aarch64-linux" ];
    mainProgram = "obs";