2021-08-10 21:34:42 +01:00
|
|
|
{ config
|
|
|
|
, lib
|
|
|
|
, stdenv
|
2019-07-30 13:24:46 +01:00
|
|
|
, mkDerivation
|
2015-11-19 01:03:35 +00:00
|
|
|
, fetchFromGitHub
|
2020-04-28 15:04:41 +01:00
|
|
|
, addOpenGLRunpath
|
2015-03-30 08:10:29 +01:00
|
|
|
, cmake
|
2017-05-04 23:14:59 +01:00
|
|
|
, fdk_aac
|
2022-02-06 00:59:50 +00:00
|
|
|
, ffmpeg_4
|
2015-03-30 08:10:29 +01:00
|
|
|
, jansson
|
2017-10-24 22:09:33 +01:00
|
|
|
, libjack2
|
2015-03-30 08:10:29 +01:00
|
|
|
, libxkbcommon
|
2017-05-04 23:14:59 +01:00
|
|
|
, libpthreadstubs
|
|
|
|
, libXdmcp
|
2015-12-20 02:15:34 +00:00
|
|
|
, qtbase
|
|
|
|
, qtx11extras
|
2019-05-03 19:17:14 +01:00
|
|
|
, qtsvg
|
2017-10-24 22:09:33 +01:00
|
|
|
, speex
|
2015-03-30 08:10:29 +01:00
|
|
|
, libv4l
|
|
|
|
, x264
|
2015-07-16 21:10:16 +01:00
|
|
|
, curl
|
2021-03-18 12:27:51 +00:00
|
|
|
, wayland
|
2016-07-25 03:19:32 +01:00
|
|
|
, xorg
|
2021-01-17 02:09:27 +00:00
|
|
|
, pkg-config
|
2020-09-25 16:50:44 +01:00
|
|
|
, libvlc
|
2018-09-23 02:04:04 +01:00
|
|
|
, mbedtls
|
2021-11-12 18:06:22 +00:00
|
|
|
, wrapGAppsHook
|
2019-01-10 21:58:20 +00:00
|
|
|
, scriptingSupport ? true
|
|
|
|
, luajit
|
|
|
|
, swig
|
|
|
|
, python3
|
2019-02-03 15:33:18 +00:00
|
|
|
, alsaSupport ? stdenv.isLinux
|
2021-06-10 03:57:09 +01:00
|
|
|
, alsa-lib
|
2019-02-03 15:33:18 +00:00
|
|
|
, pulseaudioSupport ? config.pulseaudio or stdenv.isLinux
|
2015-06-25 07:47:44 +01:00
|
|
|
, libpulseaudio
|
2020-10-01 15:43:16 +01:00
|
|
|
, libcef
|
2021-12-30 12:57:33 +00:00
|
|
|
, pciutils
|
2021-04-02 20:22:12 +01:00
|
|
|
, pipewireSupport ? stdenv.isLinux
|
|
|
|
, pipewire
|
2021-11-28 17:07:46 +00:00
|
|
|
, libdrm
|
2015-03-30 08:10:29 +01:00
|
|
|
}:
|
|
|
|
|
2015-06-25 07:47:44 +01:00
|
|
|
let
|
2021-01-15 05:42:41 +00:00
|
|
|
inherit (lib) optional optionals;
|
2020-05-21 13:52:32 +01:00
|
|
|
|
2021-08-10 21:34:42 +01:00
|
|
|
in
|
|
|
|
mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "obs-studio";
|
2022-04-08 06:46:04 +01:00
|
|
|
version = "27.2.4";
|
2015-03-30 08:10:29 +01:00
|
|
|
|
2015-11-19 01:03:35 +00:00
|
|
|
src = fetchFromGitHub {
|
2020-01-22 11:51:51 +00:00
|
|
|
owner = "obsproject";
|
2015-11-19 01:03:35 +00:00
|
|
|
repo = "obs-studio";
|
2021-01-28 23:42:03 +00:00
|
|
|
rev = version;
|
2022-04-08 06:46:04 +01:00
|
|
|
sha256 = "sha256-OiSejQovSmhItrnrQlcVp9PCDRgAhuxTinSpXbH8bo0=";
|
2020-10-01 15:43:16 +01:00
|
|
|
fetchSubmodules = true;
|
2015-03-30 08:10:29 +01:00
|
|
|
};
|
|
|
|
|
2021-06-10 18:18:46 +01:00
|
|
|
patches = [
|
|
|
|
# Lets obs-browser build against CEF 90.1.0+
|
|
|
|
./Enable-file-access-and-universal-access-for-file-URL.patch
|
|
|
|
];
|
|
|
|
|
2021-08-10 21:34:42 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
addOpenGLRunpath
|
|
|
|
cmake
|
|
|
|
pkg-config
|
2021-11-12 18:06:22 +00:00
|
|
|
wrapGAppsHook
|
2021-08-10 21:34:42 +01:00
|
|
|
]
|
|
|
|
++ optional scriptingSupport swig;
|
2015-11-19 01:03:35 +00:00
|
|
|
|
2020-05-21 13:52:32 +01:00
|
|
|
buildInputs = [
|
|
|
|
curl
|
|
|
|
fdk_aac
|
2022-02-06 00:59:50 +00:00
|
|
|
ffmpeg_4
|
2020-05-21 13:52:32 +01:00
|
|
|
jansson
|
2020-10-01 15:43:16 +01:00
|
|
|
libcef
|
2020-05-21 13:52:32 +01:00
|
|
|
libjack2
|
|
|
|
libv4l
|
|
|
|
libxkbcommon
|
|
|
|
libpthreadstubs
|
|
|
|
libXdmcp
|
|
|
|
qtbase
|
|
|
|
qtx11extras
|
|
|
|
qtsvg
|
|
|
|
speex
|
2021-03-18 12:27:51 +00:00
|
|
|
wayland
|
2020-05-21 13:52:32 +01:00
|
|
|
x264
|
2020-09-25 16:50:44 +01:00
|
|
|
libvlc
|
2020-05-21 13:52:32 +01:00
|
|
|
mbedtls
|
2021-12-30 12:57:33 +00:00
|
|
|
pciutils
|
2020-05-21 13:52:32 +01:00
|
|
|
]
|
2021-08-10 21:34:42 +01:00
|
|
|
++ optionals scriptingSupport [ luajit python3 ]
|
2021-06-10 03:57:09 +01:00
|
|
|
++ optional alsaSupport alsa-lib
|
2021-04-02 20:22:12 +01:00
|
|
|
++ optional pulseaudioSupport libpulseaudio
|
2021-11-28 17:07:46 +00:00
|
|
|
++ optionals pipewireSupport [ pipewire libdrm ];
|
2015-03-30 08:10:29 +01:00
|
|
|
|
2020-10-01 15:43:16 +01:00
|
|
|
# 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/
|
|
|
|
'';
|
|
|
|
|
2015-03-30 08:10:29 +01:00
|
|
|
# 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.
|
2020-05-21 13:52:32 +01:00
|
|
|
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
|
2020-10-01 15:43:16 +01:00
|
|
|
# Add support for browser source
|
|
|
|
"-DBUILD_BROWSER=ON"
|
|
|
|
"-DCEF_ROOT_DIR=../../cef"
|
2020-05-21 13:52:32 +01:00
|
|
|
];
|
2015-03-30 08:10:29 +01:00
|
|
|
|
2021-11-14 09:14:39 +00:00
|
|
|
dontWrapGApps = true;
|
|
|
|
preFixup = ''
|
|
|
|
qtWrapperArgs+=(
|
|
|
|
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ xorg.libX11 libvlc ]}"
|
|
|
|
''${gappsWrapperArgs[@]}
|
|
|
|
)
|
|
|
|
'';
|
2016-07-25 03:19:32 +01:00
|
|
|
|
2021-01-15 05:42:41 +00:00
|
|
|
postFixup = lib.optionalString stdenv.isLinux ''
|
2021-06-17 19:05:26 +01:00
|
|
|
addOpenGLRunpath $out/lib/lib*.so
|
|
|
|
addOpenGLRunpath $out/lib/obs-plugins/*.so
|
2020-04-28 15:04:41 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-03-30 08:10:29 +01:00
|
|
|
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
|
|
|
|
'';
|
2020-03-19 12:55:37 +00:00
|
|
|
homepage = "https://obsproject.com";
|
2021-06-17 19:05:26 +01:00
|
|
|
maintainers = with maintainers; [ jb55 MP2E V ];
|
2021-08-10 21:34:42 +01:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = [ "x86_64-linux" "i686-linux" "aarch64-linux" ];
|
2022-02-16 22:14:51 +00:00
|
|
|
mainProgram = "obs";
|
2015-03-30 08:10:29 +01:00
|
|
|
};
|
|
|
|
}
|