From 49b3864f656a8bd22f6842b0883b43ca1fbf0c2c Mon Sep 17 00:00:00 2001 From: polynomialspace Date: Fri, 24 Mar 2023 09:27:15 -0700 Subject: [PATCH] libvmaf: add xxd to nativeBuildInputs ref: https://github.com/Netflix/vmaf/issues/989 ref: https://github.com/Netflix/vmaf/commit/e691e4e6e7b79ce4ed22e97ce9cfafbb67260cf6 --- pkgs/development/libraries/libvmaf/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libvmaf/default.nix b/pkgs/development/libraries/libvmaf/default.nix index c0fc4d1556f..55a08d59ed8 100644 --- a/pkgs/development/libraries/libvmaf/default.nix +++ b/pkgs/development/libraries/libvmaf/default.nix @@ -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" ];