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

54 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv
, fetchurl
, cmake
, ffmpeg
, jansson
, libxkbcommon
, qt5
, libv4l
, x264
2015-06-25 06:47:44 +00:00
, pulseaudioSupport ? false
, libpulseaudio
}:
2015-06-25 06:47:44 +00:00
let
optional = stdenv.lib.optional;
in stdenv.mkDerivation rec {
2015-03-30 15:37:13 +00:00
name = "obs-studio-${version}";
2015-05-18 23:10:03 +00:00
version = "0.10.0";
src = fetchurl {
2015-03-30 15:37:13 +00:00
url = "https://github.com/jp9000/obs-studio/archive/${version}.tar.gz";
2015-05-18 23:10:03 +00:00
sha256 = "1xms48gl20pr9g8bv8ygykh6m99c3wjphsavr4hb1d5263r9f4in";
};
buildInputs = [ cmake
ffmpeg
jansson
libv4l
libxkbcommon
2015-05-10 11:44:50 +00:00
qt5.base
qt5.x11extras
x264
2015-06-25 06:47:44 +00:00
]
++ 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;
};
}