mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
41 lines
1.2 KiB
Nix
41 lines
1.2 KiB
Nix
# We don't have a wrapper which can supply obs-studio plugins so you have to
|
|
# somewhat manually install this:
|
|
|
|
# nix-env -f "<nixpkgs>" -iA obs-ndi
|
|
# mkdir -p ~/.config/obs-studio/plugins/bin
|
|
# ln -s ~/.nix-profile/lib/obs-plugins/obs-ndi.so ~/.config/obs-studio/plugins/bin/
|
|
|
|
{ stdenv, fetchFromGitHub, obs-studio, cmake, qt5, ndi }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "obs-ndi";
|
|
version = "4.7.1";
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ obs-studio qt5.qtbase ndi ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Palakis";
|
|
repo = "obs-ndi";
|
|
rev = version;
|
|
sha256 = "040fkbf3f3qgqcrd3072y3zrjb4fwga8zr10jym744xd7bgyylqh";
|
|
};
|
|
|
|
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"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Network A/V plugin for OBS Studio";
|
|
homepage = https://github.com/Palakis/obs-ndi;
|
|
maintainers = with maintainers; [ peti ];
|
|
license = licenses.gpl2;
|
|
platforms = with platforms; linux;
|
|
};
|
|
}
|