libvmaf: add xxd to nativeBuildInputs

ref: https://github.com/Netflix/vmaf/issues/989
ref: e691e4e6e7
This commit is contained in:
polynomialspace 2023-03-24 09:27:15 -07:00
parent 9e6337ddc0
commit 49b3864f65

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, fetchpatch, meson, ninja, nasm }:
{ lib, stdenv, fetchFromGitHub, fetchpatch, meson, ninja, nasm, xxd }:
stdenv.mkDerivation rec {
pname = "libvmaf";
@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
})
];
nativeBuildInputs = [ meson ninja nasm ];
nativeBuildInputs = [ meson ninja nasm xxd ];
mesonFlags = [ "-Denable_avx512=true" ];