From ae2f9509bd63a86471b311828443e2232d33de57 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Tue, 30 Oct 2018 16:39:36 -0500 Subject: [PATCH] vaapiIntel: bump to 2.2.0, don't force using matching version w/libva If there was a 2.3.0 we would use that, but there isn't and only version requirement mentioned is libva >= 1.1.0 . (they also test against libva git in the travis.yml, FWIW) https://github.com/intel/intel-vaapi-driver/releases/tag/2.2.0 --- pkgs/development/libraries/vaapi-intel/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/vaapi-intel/default.nix b/pkgs/development/libraries/vaapi-intel/default.nix index ba763e334905..70ee61aecd3b 100644 --- a/pkgs/development/libraries/vaapi-intel/default.nix +++ b/pkgs/development/libraries/vaapi-intel/default.nix @@ -5,13 +5,13 @@ stdenv.mkDerivation rec { name = "intel-vaapi-driver-${version}"; - inherit (libva) version; + version = "2.2.0"; # generally try to match libva version, but not required src = fetchFromGitHub { owner = "intel"; repo = "intel-vaapi-driver"; rev = version; - sha256 = "15ag4al9h6b8f8sw1zpighyhsmr5qfqp1882q7r3gsh5g4cnj763"; + sha256 = "1z8iqnswias2gph61yzyal53456y71ff98f21cs17hw4qjfkwa6k"; }; patchPhase = ''