vulkan-extension-layer: 1.2.189.1 -> 1.2.198.0

The vulkan-headers were updated which caused the version check between
the extension-layer and the headers to fail.
This commit is contained in:
João Capucho 2022-02-09 23:33:46 +00:00
parent a147b46130
commit 34c62b43fa
No known key found for this signature in database
GPG key ID: AC819B0B6F3B24A2

View file

@ -2,14 +2,14 @@
stdenv.mkDerivation rec {
pname = "vulkan-extension-layer";
version = "1.2.189.1";
version = "1.2.198.0";
src = (assert version == vulkan-headers.version;
fetchFromGitHub {
owner = "KhronosGroup";
repo = "Vulkan-ExtensionLayer";
rev = "sdk-${version}";
sha256 = "0qi9ps215pmrh8vgi81wvlzjyxs44bama2x3d43a1bbvcyp9s6kp";
sha256 = "sha256-g674rw8lXyP1WUoJmbRRL7s+1Yxs00sR04+hTQ3l3dE=";
});
nativeBuildInputs = [ cmake jq ];