libvmaf: 1.5.2 -> 1.5.3

https://github.com/Netflix/vmaf/releases/tag/v1.5.3
This commit is contained in:
Mario Rodas 2020-08-24 18:40:00 -05:00
parent 0c7803f144
commit 7c6f1d850a
No known key found for this signature in database
GPG Key ID: 325649BCA6D53027

View File

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