about summary refs log tree commit diff
path: root/pkgs/applications/video/obs-studio/default.nix
diff options
context:
space:
mode:
authorSebastian Sellmeier <mail@sebastian-sellmeier.de>2022-10-05 12:36:25 +0200
committerSebastian Sellmeier <mail@sebastian-sellmeier.de>2022-10-22 22:13:31 +0200
commit9f7914afa2cd3ddf95621731e486eff2d3993c14 (patch)
tree5a9b1a3420bc01d7e2e5388aaecd4817dfcaac2b /pkgs/applications/video/obs-studio/default.nix
parent52593f7a50f2f80c087398e5cb50e042c563ca56 (diff)
obs-studio: add 28.0.3 (parallel to 27.x)
Diffstat (limited to 'pkgs/applications/video/obs-studio/default.nix')
-rw-r--r--pkgs/applications/video/obs-studio/default.nix148
1 files changed, 0 insertions, 148 deletions
diff --git a/pkgs/applications/video/obs-studio/default.nix b/pkgs/applications/video/obs-studio/default.nix
deleted file mode 100644
index 044967b2e526b..0000000000000
--- a/pkgs/applications/video/obs-studio/default.nix
+++ /dev/null
@@ -1,148 +0,0 @@
-{ config
-, lib
-, stdenv
-, mkDerivation
-, fetchFromGitHub
-, addOpenGLRunpath
-, cmake
-, fdk_aac
-, ffmpeg_4
-, jansson
-, libjack2
-, libxkbcommon
-, libpthreadstubs
-, libXdmcp
-, qtbase
-, qtx11extras
-, qtsvg
-, speex
-, libv4l
-, x264
-, curl
-, wayland
-, xorg
-, pkg-config
-, libvlc
-, mbedtls
-, wrapGAppsHook
-, scriptingSupport ? true
-, luajit
-, swig
-, python3
-, alsaSupport ? stdenv.isLinux
-, alsa-lib
-, pulseaudioSupport ? config.pulseaudio or stdenv.isLinux
-, libpulseaudio
-, libcef
-, pciutils
-, pipewireSupport ? stdenv.isLinux
-, pipewire
-, libdrm
-}:
-
-let
-  inherit (lib) optional optionals;
-
-in
-mkDerivation rec {
-  pname = "obs-studio";
-  version = "27.2.4";
-
-  src = fetchFromGitHub {
-    owner = "obsproject";
-    repo = "obs-studio";
-    rev = version;
-    sha256 = "sha256-OiSejQovSmhItrnrQlcVp9PCDRgAhuxTinSpXbH8bo0=";
-    fetchSubmodules = true;
-  };
-
-  patches = [
-    # Lets obs-browser build against CEF 90.1.0+
-    ./Enable-file-access-and-universal-access-for-file-URL.patch
-  ];
-
-  nativeBuildInputs = [
-    addOpenGLRunpath
-    cmake
-    pkg-config
-    wrapGAppsHook
-  ]
-  ++ optional scriptingSupport swig;
-
-  buildInputs = [
-    curl
-    fdk_aac
-    ffmpeg_4
-    jansson
-    libcef
-    libjack2
-    libv4l
-    libxkbcommon
-    libpthreadstubs
-    libXdmcp
-    qtbase
-    qtx11extras
-    qtsvg
-    speex
-    wayland
-    x264
-    libvlc
-    mbedtls
-    pciutils
-  ]
-  ++ optionals scriptingSupport [ luajit python3 ]
-  ++ optional alsaSupport alsa-lib
-  ++ optional pulseaudioSupport libpulseaudio
-  ++ optionals pipewireSupport [ pipewire libdrm ];
-
-  # Copied from the obs-linuxbrowser
-  postUnpack = ''
-    mkdir -p cef/Release cef/Resources cef/libcef_dll_wrapper/
-    for i in ${libcef}/share/cef/*; do
-      cp -r $i cef/Release/
-      cp -r $i cef/Resources/
-    done
-    cp -r ${libcef}/lib/libcef.so cef/Release/
-    cp -r ${libcef}/lib/libcef_dll_wrapper.a cef/libcef_dll_wrapper/
-    cp -r ${libcef}/include cef/
-  '';
-
-  # obs attempts to dlopen libobs-opengl, it fails unless we make sure
-  # DL_OPENGL is an explicit path. Not sure if there's a better way
-  # to handle this.
-  cmakeFlags = [
-    "-DCMAKE_CXX_FLAGS=-DDL_OPENGL=\\\"$(out)/lib/libobs-opengl.so\\\""
-    "-DOBS_VERSION_OVERRIDE=${version}"
-    "-Wno-dev" # kill dev warnings that are useless for packaging
-    # Add support for browser source
-    "-DBUILD_BROWSER=ON"
-    "-DCEF_ROOT_DIR=../../cef"
-  ];
-
-  dontWrapGApps = true;
-  preFixup = ''
-    qtWrapperArgs+=(
-      --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ xorg.libX11 libvlc ]}"
-      ''${gappsWrapperArgs[@]}
-    )
-  '';
-
-  postFixup = lib.optionalString stdenv.isLinux ''
-    addOpenGLRunpath $out/lib/lib*.so
-    addOpenGLRunpath $out/lib/obs-plugins/*.so
-  '';
-
-  meta = with lib; {
-    description = "Free and open source software for video recording and live streaming";
-    longDescription = ''
-      This project is a rewrite of what was formerly known as "Open Broadcaster
-      Software", software originally designed for recording and streaming live
-      video content, efficiently
-    '';
-    homepage = "https://obsproject.com";
-    maintainers = with maintainers; [ jb55 MP2E V miangraham ];
-    license = licenses.gpl2Plus;
-    platforms = [ "x86_64-linux" "i686-linux" "aarch64-linux" ];
-    mainProgram = "obs";
-  };
-}