nixpkgs/pkgs/applications/video/obs-studio/default.nix

108 lines
2.3 KiB
Nix
Raw Normal View History

{ config, stdenv
, mkDerivation
2015-11-19 01:03:35 +00:00
, fetchFromGitHub
, addOpenGLRunpath
, cmake
, fdk_aac
, ffmpeg
, jansson
, libjack2
, libxkbcommon
, libpthreadstubs
, libXdmcp
2015-12-20 02:15:34 +00:00
, qtbase
, qtx11extras
2019-05-03 18:17:14 +00:00
, qtsvg
, speex
, libv4l
, x264
, curl
, xorg
, makeWrapper
, pkgconfig
, vlc
2018-09-23 01:04:04 +00:00
, mbedtls
2015-06-25 06:47:44 +00:00
, scriptingSupport ? true
, luajit
, swig
, python3
, alsaSupport ? stdenv.isLinux
, alsaLib
, pulseaudioSupport ? config.pulseaudio or stdenv.isLinux
2015-06-25 06:47:44 +00:00
, libpulseaudio
}:
2015-06-25 06:47:44 +00:00
let
inherit (stdenv.lib) optional optionals;
in mkDerivation rec {
pname = "obs-studio";
2020-04-28 14:08:13 +00:00
version = "25.0.8";
2015-11-19 01:03:35 +00:00
src = fetchFromGitHub {
owner = "obsproject";
2015-11-19 01:03:35 +00:00
repo = "obs-studio";
2019-09-08 23:38:31 +00:00
rev = version;
2020-04-28 14:08:13 +00:00
sha256 = "0j2k65q3wfyfxhvkl6icz4qy0s3kfqhksizy2i3ah7yml266axbj";
};
nativeBuildInputs = [ addOpenGLRunpath cmake pkgconfig ];
2015-11-19 01:03:35 +00:00
buildInputs = [
curl
fdk_aac
ffmpeg
jansson
libjack2
libv4l
libxkbcommon
libpthreadstubs
libXdmcp
qtbase
qtx11extras
qtsvg
speex
x264
vlc
makeWrapper
mbedtls
]
++ optionals 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\\\""
"-DOBS_VERSION_OVERRIDE=${version}"
"-Wno-dev" # kill dev warnings that are useless for packaging
];
postInstall = ''
wrapProgram $out/bin/obs \
--prefix "LD_LIBRARY_PATH" : "${xorg.libX11.out}/lib:${vlc}/lib"
'';
postFixup = stdenv.lib.optionalString stdenv.isLinux ''
addOpenGLRunpath $out/lib/lib*.so
2020-04-28 14:08:13 +00:00
addOpenGLRunpath $out/lib/obs-plugins/*.so
'';
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
'';
2020-03-19 12:55:37 +00:00
homepage = "https://obsproject.com";
maintainers = with maintainers; [ jb55 MP2E ];
license = licenses.gpl2;
platforms = [ "x86_64-linux" "i686-linux" ];
};
}