Files
Philip Taron 35c09df3ae libvmaf: replace xxd dependency with minimal shell shim
libvmaf uses `xxd --include` to embed model JSON files as C arrays.
This pulled in tinyxxd, causing ~22k rebuilds via libaom -> ffmpeg ->
everything whenever tinyxxd was updated. Replace it with a minimal
`xxd --include` implementation using only stdenv tools (od, sed).

The output is bit-for-bit identical (verified with diffoscope).
2026-03-25 13:28:43 -07:00

71 lines
1.5 KiB
Nix

{
lib,
buildPackages,
stdenv,
fetchFromGitHub,
ffmpeg-full,
libaom,
meson,
nasm,
ninja,
testers,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "libvmaf";
version = "3.0.0";
src = fetchFromGitHub {
owner = "netflix";
repo = "vmaf";
rev = "v${finalAttrs.version}";
sha256 = "sha256-6mwU2so1YM2pyWkJbDHVl443GgWtQazbBv3gTMBq5NA=";
};
sourceRoot = "${finalAttrs.src.name}/libvmaf";
nativeBuildInputs = [
meson
ninja
nasm
(buildPackages.callPackage ./xxd.nix { })
];
postPatch = lib.optionalString stdenv.hostPlatform.isFreeBSD ''
substituteInPlace meson.build --replace-fail '_XOPEN_SOURCE=600' '_XOPEN_SOURCE=700'
'';
env = lib.optionalAttrs stdenv.hostPlatform.isFreeBSD {
NIX_CFLAGS_COMPILE = "-D__BSD_VISIBLE=1";
};
mesonFlags = [ "-Denable_avx512=true" ];
outputs = [
"out"
"dev"
];
doCheck = false;
passthru.tests = {
inherit libaom ffmpeg-full;
version = testers.testVersion {
package = finalAttrs.finalPackage;
};
pkg-config = testers.hasPkgConfigModules {
package = finalAttrs.finalPackage;
moduleNames = [ "libvmaf" ];
};
};
meta = {
description = "Perceptual video quality assessment based on multi-method fusion (VMAF)";
homepage = "https://github.com/Netflix/vmaf";
changelog = "https://github.com/Netflix/vmaf/blob/v${finalAttrs.version}/CHANGELOG.md";
license = lib.licenses.bsd2Patent;
maintainers = [ lib.maintainers.cfsmp3 ];
mainProgram = "vmaf";
platforms = lib.platforms.unix;
};
})