15da9ce149
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/obs-studio/versions
98 lines
2.3 KiB
Nix
98 lines
2.3 KiB
Nix
{ config, stdenv
|
|
, mkDerivation
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, fdk_aac
|
|
, ffmpeg
|
|
, jansson
|
|
, libjack2
|
|
, libxkbcommon
|
|
, libpthreadstubs
|
|
, libXdmcp
|
|
, qtbase
|
|
, qtx11extras
|
|
, qtsvg
|
|
, speex
|
|
, libv4l
|
|
, x264
|
|
, curl
|
|
, xorg
|
|
, makeWrapper
|
|
, pkgconfig
|
|
, vlc
|
|
, mbedtls
|
|
|
|
, scriptingSupport ? true
|
|
, luajit
|
|
, swig
|
|
, python3
|
|
|
|
, alsaSupport ? stdenv.isLinux
|
|
, alsaLib
|
|
, pulseaudioSupport ? config.pulseaudio or stdenv.isLinux
|
|
, libpulseaudio
|
|
}:
|
|
|
|
let
|
|
optional = stdenv.lib.optional;
|
|
in mkDerivation rec {
|
|
pname = "obs-studio";
|
|
version = "24.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jp9000";
|
|
repo = "obs-studio";
|
|
rev = version;
|
|
sha256 = "056s0hs1ds3c57sc0gy39dxaxvwlakl3w25jxgawh0fs99211ar5";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake
|
|
pkgconfig
|
|
];
|
|
|
|
buildInputs = [ curl
|
|
fdk_aac
|
|
ffmpeg
|
|
jansson
|
|
libjack2
|
|
libv4l
|
|
libxkbcommon
|
|
libpthreadstubs
|
|
libXdmcp
|
|
qtbase
|
|
qtx11extras
|
|
qtsvg
|
|
speex
|
|
x264
|
|
vlc
|
|
makeWrapper
|
|
mbedtls
|
|
]
|
|
++ optional scriptingSupport [ luajit swig python3 ]
|
|
++ optional alsaSupport alsaLib
|
|
++ optional pulseaudioSupport libpulseaudio;
|
|
|
|
# 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\\\"" ];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/obs \
|
|
--prefix "LD_LIBRARY_PATH" : "${xorg.libX11.out}/lib:${vlc}/lib"
|
|
'';
|
|
|
|
meta = with stdenv.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 ];
|
|
license = licenses.gpl2;
|
|
platforms = [ "x86_64-linux" "i686-linux" ];
|
|
};
|
|
}
|