nixpkgs/pkgs/applications/video/obs-studio/default.nix
R. RyanTM 3d7ab2f523 obs-studio: 21.1.1 -> 21.1.2 (#40660)
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.

These checks were done:

- built on NixOS
- /nix/store/7ajk0j59wzn7pcynqchqkvlrdwnrgkdq-obs-studio-21.1.2/bin/obs passed the binary check.
- /nix/store/7ajk0j59wzn7pcynqchqkvlrdwnrgkdq-obs-studio-21.1.2/bin/.obs-wrapped passed the binary check.
- 2 of 2 passed binary check by having a zero exit code.
- 0 of 2 passed binary check by having the new version present in output.
- found 21.1.2 with grep in /nix/store/7ajk0j59wzn7pcynqchqkvlrdwnrgkdq-obs-studio-21.1.2
- directory tree listing: https://gist.github.com/f501ac763d6c76528c24a40ab59ae620
- du listing: https://gist.github.com/ed4e17e15dd316ad1aafa8e7e89394a6
2018-05-19 17:02:09 +02:00

89 lines
2.1 KiB
Nix

{ stdenv
, fetchFromGitHub
, cmake
, fdk_aac
, ffmpeg
, jansson
, libjack2
, libxkbcommon
, libpthreadstubs
, libXdmcp
, qtbase
, qtx11extras
, speex
, libv4l
, x264
, curl
, xorg
, makeWrapper
, pkgconfig
, vlc
, alsaSupport ? false
, alsaLib
, pulseaudioSupport ? false
, libpulseaudio
}:
let
optional = stdenv.lib.optional;
in stdenv.mkDerivation rec {
name = "obs-studio-${version}";
version = "21.1.2";
src = fetchFromGitHub {
owner = "jp9000";
repo = "obs-studio";
rev = "${version}";
sha256 = "1gl6qibvckczk3yl44h3yshml6sn3izwn58qpxils5837rpkwlc5";
};
patches = [ ./find-xcb.patch ];
nativeBuildInputs = [ cmake
pkgconfig
];
buildInputs = [ curl
fdk_aac
ffmpeg
jansson
libjack2
libv4l
libxkbcommon
libpthreadstubs
libXdmcp
qtbase
qtx11extras
speex
x264
vlc
makeWrapper
]
++ 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 = with platforms; linux;
};
}