ffms: fix vapoursynth plugin on darwin

This commit is contained in:
Weijia Wang 2024-11-26 13:06:24 +01:00
parent e904075ee6
commit 8cf68bd054

View File

@ -39,7 +39,7 @@ stdenv.mkDerivation rec {
# https://github.com/FFMS/ffms2#avisynth-and-vapoursynth-plugin
postInstall = ''
mkdir $out/lib/vapoursynth
ln -s $out/lib/libffms2.so $out/lib/vapoursynth/libffms2.so
ln -s $out/lib/libffms2${stdenv.hostPlatform.extensions.sharedLibrary} $out/lib/vapoursynth/libffms2${stdenv.hostPlatform.extensions.sharedLibrary}
'';
meta = with lib; {