1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-02 02:24:27 +00:00
nixpkgs/pkgs/applications/video/obs-studio/default.nix

83 lines
2 KiB
Nix
Raw Normal View History

{ stdenv
2015-11-19 01:03:35 +00:00
, fetchFromGitHub
, cmake
, fdk_aac
, ffmpeg
, jansson
, libxkbcommon
, libpthreadstubs
, libXdmcp
2015-12-20 02:15:34 +00:00
, qtbase
, qtx11extras
, libv4l
, x264
, curl
, xorg
, makeWrapper
, pkgconfig
2015-06-25 07:47:44 +01:00
, alsaSupport ? false
, alsaLib
2015-06-25 07:47:44 +01:00
, pulseaudioSupport ? false
, libpulseaudio
}:
2015-06-25 07:47:44 +01:00
let
optional = stdenv.lib.optional;
in stdenv.mkDerivation rec {
2015-03-30 16:37:13 +01:00
name = "obs-studio-${version}";
version = "18.0.2";
2015-11-19 01:03:35 +00:00
src = fetchFromGitHub {
owner = "jp9000";
repo = "obs-studio";
rev = "2bf9d548";
sha256 = "036l29m3dlqadvaazj0nmgi2lcji8zckdvx3gjrx1kp96yd5myqd";
};
patches = [ ./find-xcb.patch ];
2015-11-19 01:03:35 +00:00
nativeBuildInputs = [ cmake
pkgconfig
2015-11-19 01:03:35 +00:00
];
buildInputs = [ curl
fdk_aac
ffmpeg
jansson
libv4l
libxkbcommon
libpthreadstubs
libXdmcp
2015-12-20 02:15:34 +00:00
qtbase
qtx11extras
x264
makeWrapper
2015-06-25 07:47:44 +01:00
]
++ optional alsaSupport alsaLib
2015-06-25 07:47:44 +01: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\\\"" ];
postInstall = ''
wrapProgram $out/bin/obs \
--prefix "LD_LIBRARY_PATH" : "${xorg.libX11.out}/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 = with platforms; linux;
};
}