e8e0255162
* obs-studio: tidy things up a little * obs-studio: add plugin wrapper This allows users to install plugins into their OBS Studio, like so: wrapOBS { plugins = with obs-studio-plugins; [ wlrobs obs-multi-rtmp obs-gstreamer ]; } * obs-gstreamer: convert to plugin * obs-move-transition: convert to plugin * obs-multi-rtmp: convert to plugin * obs-ndi: convert to plugin * obs-v4l2sink: remove The functionality provided by this package is included in the upstream project as of version 26.1. Link: https://github.com/CatxFish/obs-v4l2sink/issues/56#issuecomment-753191690 Link: https://github.com/obsproject/obs-studio/releases/tag/26.1.0 * wlrobs: convert to plugin, unstable-2020-06-22 -> unstable-2021-05-13
36 lines
970 B
Nix
36 lines
970 B
Nix
{ lib, stdenv, fetchFromGitHub, obs-studio, cmake, qtbase, ndi }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "obs-ndi";
|
|
version = "4.9.1";
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ obs-studio qtbase ndi ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Palakis";
|
|
repo = "obs-ndi";
|
|
rev = version;
|
|
sha256 = "1y3xdqp55jayhg4sinwiwpk194zc4f4jf0abz647x2fprsk9jz7s";
|
|
};
|
|
|
|
patches = [ ./fix-search-path.patch ./hardcode-ndi-path.patch ];
|
|
|
|
postPatch = "sed -i -e s,@NDI@,${ndi},g src/obs-ndi.cpp";
|
|
|
|
cmakeFlags = [
|
|
"-DLIBOBS_INCLUDE_DIR=${obs-studio}/include/obs"
|
|
"-DLIBOBS_LIB=${obs-studio}/lib"
|
|
"-DCMAKE_CXX_FLAGS=-I${obs-studio.src}/UI/obs-frontend-api"
|
|
];
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
meta = with lib; {
|
|
description = "Network A/V plugin for OBS Studio";
|
|
homepage = "https://github.com/Palakis/obs-ndi";
|
|
maintainers = with maintainers; [ peti jshcmpbll ];
|
|
license = licenses.gpl2;
|
|
platforms = with platforms; linux;
|
|
};
|
|
}
|