Merge pull request #96215 from marsam/update-libvmaf

libvmaf: 1.5.2 -> 1.5.3
This commit is contained in:
Mario Rodas 2020-08-25 08:48:44 -05:00 committed by GitHub
commit 08ab7f16a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,19 +1,19 @@
{ stdenv, fetchFromGitHub, meson, ninja }: { stdenv, fetchFromGitHub, meson, ninja, nasm }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "libvmaf"; pname = "libvmaf";
version = "1.5.2"; version = "1.5.3";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "netflix"; owner = "netflix";
repo = "vmaf"; repo = "vmaf";
rev = "v${version}"; rev = "v${version}";
sha256 = "18w0z3w90fdbzsqaa4diwvq0xmvg0aiw4hi3aaa4pq0zgnb8g3mk"; sha256 = "0x3l3g0hgrrjh3ygmxr1pd3rd5589s07c7id35nvj76ch5b7gy63";
}; };
sourceRoot = "source/libvmaf"; sourceRoot = "source/libvmaf";
nativeBuildInputs = [ meson ninja ]; nativeBuildInputs = [ meson ninja nasm ];
outputs = [ "out" "dev" ]; outputs = [ "out" "dev" ];
doCheck = true; doCheck = true;