Skip to content

Commit

Permalink
Merge pull request #96215 from marsam/update-libvmaf
Browse files Browse the repository at this point in the history
libvmaf: 1.5.2 -> 1.5.3
  • Loading branch information
marsam committed Aug 25, 2020
2 parents 692a12e + 7c6f1d8 commit 08ab7f1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkgs/development/libraries/libvmaf/default.nix
Original file line number Diff line number Diff line change
@@ -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;

Expand Down

0 comments on commit 08ab7f1

Please sign in to comment.