vulkan-headers, vulkan-tools: fix version

This fixes an assertion error in vulkan-loader on version == vulkan-headers.version:

assertion failed at /nix/store/ca66sbxzxlxlfpb579nxxnw97z2ql1gv-source/pkgs/development/libraries/vulkan-loader/default.nix:8:1

The sha256 for vulkan-headers and vulkan-tools are unchanged because
they were already set to the newer version. The correct version was
lost in the staging-next merge.
This commit is contained in:
Ivan Kozik 2019-08-31 17:23:21 +00:00
parent aeeed6a517
commit e54007370f
2 changed files with 2 additions and 2 deletions

@ -1,7 +1,7 @@
{ stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
pname = "vulkan-headers";
version = "1.1.106";
version = "1.1.114.0";
nativeBuildInputs = [ cmake ];

@ -3,7 +3,7 @@
stdenv.mkDerivation rec {
pname = "vulkan-tools";
version = "1.1.106.0";
version = "1.1.114.0";
src = fetchFromGitHub {
owner = "KhronosGroup";