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