nixpkgs/pkgs/development/libraries/ndi/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

72 lines
2.0 KiB
Nix
Raw Normal View History

2022-07-15 16:38:59 +00:00
{ lib, stdenv, requireFile, avahi, obs-studio-plugins }:
2022-07-15 16:38:59 +00:00
let
versionJSON = lib.importJSON ./version.json;
2022-07-15 16:38:59 +00:00
in
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";
src = requireFile rec {
2022-07-15 16:38:59 +00:00
name = "${installerName}.tar.gz";
sha256 = versionJSON.hash;
message = ''
2022-07-15 16:38:59 +00:00
In order to use NDI SDK version ${version}, you need to comply with
NewTek's license and download the appropriate Linux tarball from:
${meta.homepage}
Once you have downloaded the file, please use the following command and
re-run the installation:
\$ nix-prefetch-url file://\$PWD/${name}
'';
};
buildInputs = [ avahi ];
unpackPhase = ''
unpackFile $src
2022-07-15 16:38:59 +00:00
echo y | ./${installerName}.sh
sourceRoot="NDI SDK for Linux";
'';
installPhase = ''
mkdir $out
mv bin/x86_64-linux-gnu $out/bin
for i in $out/bin/*; do
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
mv lib/x86_64-linux-gnu $out/lib
for i in $out/lib/*; do
if [ -L "$i" ]; then continue; fi
patchelf --set-rpath "${avahi}/lib:${stdenv.cc.libc}/lib" "$i"
done
mv include examples $out/
mkdir -p $out/share/doc/${pname}-${version}
mv licenses $out/share/doc/${pname}-${version}/licenses
mv logos $out/share/doc/${pname}-${version}/logos
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;
meta = with lib; {
homepage = "https://ndi.tv/sdk/";
description = "NDI Software Developer Kit";
platforms = ["x86_64-linux"];
hydraPlatforms = [];
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
};
}