98b66ac6c7
Diff: https://github.com/netflix/vmaf/compare/v2.3.1...v3.0.0 Changelog: https://github.com/Netflix/vmaf/blob/v3.0.0/CHANGELOG.md
53 lines
1.2 KiB
Nix
53 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, ffmpeg-full
|
|
, libaom
|
|
, meson
|
|
, nasm
|
|
, ninja
|
|
, testers
|
|
, xxd
|
|
}:
|
|
|
|
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 xxd ];
|
|
|
|
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 = with lib; {
|
|
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 = licenses.bsd2Patent;
|
|
maintainers = [ maintainers.cfsmp3 maintainers.marsam ];
|
|
mainProgram = "vmaf";
|
|
platforms = platforms.unix;
|
|
};
|
|
})
|