about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/video/obs-studio/plugins/obs-ndi.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/video/obs-studio/plugins/obs-ndi.nix')
-rw-r--r--nixpkgs/pkgs/applications/video/obs-studio/plugins/obs-ndi.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/video/obs-studio/plugins/obs-ndi.nix b/nixpkgs/pkgs/applications/video/obs-studio/plugins/obs-ndi.nix
new file mode 100644
index 000000000000..1e2abb45a5b3
--- /dev/null
+++ b/nixpkgs/pkgs/applications/video/obs-studio/plugins/obs-ndi.nix
@@ -0,0 +1,36 @@
+{ 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;
+  };
+}