2024-03-23 03:38:09 +00:00
|
|
|
{ lib, stdenv, fetchurl, avahi, obs-studio-plugins }:
|
2019-11-18 09:15:52 +00:00
|
|
|
|
2022-07-15 16:38:59 +00:00
|
|
|
let
|
2023-05-05 19:39:20 +00:00
|
|
|
versionJSON = lib.importJSON ./version.json;
|
2023-12-04 16:01:32 +00:00
|
|
|
ndiPlatform =
|
|
|
|
if stdenv.hostPlatform.isAarch64 then "aarch64-rpi4-linux-gnueabi"
|
|
|
|
else if stdenv.hostPlatform.isAarch32 then "arm-rpi2-linux-gnueabihf"
|
|
|
|
else if stdenv.hostPlatform.isx86_64 then "x86_64-linux-gnu"
|
|
|
|
else if stdenv.hostPlatform.isi686 then "i686-linux-gnu"
|
|
|
|
else throw "unsupported platform for NDI SDK";
|
2022-07-15 16:38:59 +00:00
|
|
|
in
|
2019-11-18 09:15:52 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "ndi";
|
2022-07-15 16:38:59 +00:00
|
|
|
version = versionJSON.version;
|
|
|
|
majorVersion = builtins.head (builtins.splitVersion version);
|
|
|
|
installerName = "Install_NDI_SDK_v${majorVersion}_Linux";
|
2019-11-18 09:15:52 +00:00
|
|
|
|
2024-03-23 03:38:09 +00:00
|
|
|
src = fetchurl {
|
|
|
|
name = "${pname}-${version}.tar.gz";
|
|
|
|
url = "https://downloads.ndi.tv/SDK/NDI_SDK_Linux/${installerName}.tar.gz";
|
|
|
|
hash = versionJSON.hash;
|
2019-11-18 09:15:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ avahi ];
|
|
|
|
|
|
|
|
unpackPhase = ''
|
2023-06-11 20:11:45 +00:00
|
|
|
unpackFile $src
|
2022-07-15 16:38:59 +00:00
|
|
|
echo y | ./${installerName}.sh
|
2019-11-18 09:15:52 +00:00
|
|
|
sourceRoot="NDI SDK for Linux";
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir $out
|
2023-12-04 16:01:32 +00:00
|
|
|
mv bin/${ndiPlatform} $out/bin
|
2019-11-18 09:15:52 +00:00
|
|
|
for i in $out/bin/*; do
|
2023-12-04 16:01:32 +00:00
|
|
|
if [ -L "$i" ]; then continue; fi
|
2019-11-18 09:15:52 +00:00
|
|
|
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" "$i"
|
|
|
|
done
|
|
|
|
patchelf --set-rpath "${avahi}/lib:${stdenv.cc.libc}/lib" $out/bin/ndi-record
|
2023-12-04 16:01:32 +00:00
|
|
|
mv lib/${ndiPlatform} $out/lib
|
2019-11-18 09:15:52 +00:00
|
|
|
for i in $out/lib/*; do
|
|
|
|
if [ -L "$i" ]; then continue; fi
|
|
|
|
patchelf --set-rpath "${avahi}/lib:${stdenv.cc.libc}/lib" "$i"
|
|
|
|
done
|
2024-03-23 03:38:09 +00:00
|
|
|
rm $out/bin/libndi.so.${majorVersion}
|
|
|
|
ln -s $out/lib/libndi.so.${version} $out/bin/libndi.so.${majorVersion}
|
2019-11-18 09:15:52 +00:00
|
|
|
mv include examples $out/
|
|
|
|
mkdir -p $out/share/doc/${pname}-${version}
|
|
|
|
mv licenses $out/share/doc/${pname}-${version}/licenses
|
|
|
|
mv documentation/* $out/share/doc/${pname}-${version}/
|
|
|
|
'';
|
|
|
|
|
|
|
|
# Stripping breaks ndi-record.
|
|
|
|
dontStrip = true;
|
|
|
|
|
2022-07-15 16:38:59 +00:00
|
|
|
passthru.tests = {
|
|
|
|
inherit (obs-studio-plugins) obs-ndi;
|
|
|
|
};
|
|
|
|
passthru.updateScript = ./update.py;
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2023-12-04 16:01:32 +00:00
|
|
|
homepage = "https://ndi.video/ndi-sdk/";
|
2019-11-18 09:15:52 +00:00
|
|
|
description = "NDI Software Developer Kit";
|
2023-12-04 16:01:32 +00:00
|
|
|
platforms = ["x86_64-linux" "i686-linux" "aarch64-linux" "armv7l-linux"];
|
2019-11-18 09:15:52 +00:00
|
|
|
hydraPlatforms = [];
|
2022-06-16 22:11:43 +00:00
|
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
2019-11-18 09:15:52 +00:00
|
|
|
license = licenses.unfree;
|
|
|
|
};
|
|
|
|
}
|