75c66fb40a
The biggest change is that since 0.14.0 it now has support for ALSA sound input, so this also adds the ALSA library to the dependencies. URL for upstream changes in 0.14.2: https://github.com/jp9000/obs-studio/releases/tag/0.14.2 URL for upstream changes in 0.14.0 and 0.14.1: https://github.com/jp9000/obs-studio/releases/tag/0.14.1 Changes for 0.13.3 and 0.13.4 were only Windows-related hotfixes, the URLs are: https://github.com/jp9000/obs-studio/releases/tag/0.13.3 https://github.com/jp9000/obs-studio/releases/tag/0.13.4 Upstream changes for 0.13.2: * Fixed an issue where certain devices (elgato/lgp/hdpvr) could have stuttering audio * Changed lossless recording quality to use .avi with uncompressed PCM audio data * Made it so that linux window capture does not display red when it can't capture, instead it now becomes transparent URL: https://github.com/jp9000/obs-studio/releases/tag/0.13.2 Built and tested successfully on my machine. Cc: @jb55 Reported-by: @rikai Signed-off-by: aszlig <aszlig@redmoonstudios.org>
64 lines
1.6 KiB
Nix
64 lines
1.6 KiB
Nix
{ stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, ffmpeg
|
|
, jansson
|
|
, libxkbcommon
|
|
, qtbase
|
|
, qtx11extras
|
|
, libv4l
|
|
, x264
|
|
, curl
|
|
|
|
, alsaSupport ? false
|
|
, alsaLib
|
|
, pulseaudioSupport ? false
|
|
, libpulseaudio
|
|
}:
|
|
|
|
let
|
|
optional = stdenv.lib.optional;
|
|
in stdenv.mkDerivation rec {
|
|
name = "obs-studio-${version}";
|
|
version = "0.14.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jp9000";
|
|
repo = "obs-studio";
|
|
rev = "${version}";
|
|
sha256 = "05yjm58d6daya1x6v8d73gx8fb20l0icay74nx0v4si2c898vm1j";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake
|
|
];
|
|
|
|
buildInputs = [ curl
|
|
ffmpeg
|
|
jansson
|
|
libv4l
|
|
libxkbcommon
|
|
qtbase
|
|
qtx11extras
|
|
x264
|
|
]
|
|
++ 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\\\"" ];
|
|
|
|
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 ];
|
|
license = licenses.gpl2;
|
|
};
|
|
}
|