1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

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
This commit is contained in:
Will Dietz 2018-10-30 16:39:36 -05:00
parent 8b2c757823
commit ae2f9509bd

View file

@ -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 = ''