vulkan-caps-viewer: 3.25 -> 3.27

+5 -5
+5 -5
pkgs/tools/graphics/vulkan-caps-viewer/default.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "vulkan-caps-viewer"; 13 - version = "3.25"; 13 + version = "3.27"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "SaschaWillems"; 17 17 repo = "VulkanCapsViewer"; 18 - rev = if version == "3.25" then "${version}_fixed" else version; 19 - hash = "sha256-JQMnR9WNR8OtcgVfE5iZebdvZ/JmZNDchET5cK/Bruc="; 18 + rev = version; 19 + hash = "sha256-B/FBX63JnBdshNLVMPA0qGnm0c/RGilIahX3VjJnpkI="; 20 20 # Note: this derivation strictly requires vulkan-header to be the same it was developed against. 21 - # To help they put in a git-submodule. 22 - # It works with older vulkan-loaders. 21 + # To help us, they've put it in a git-submodule. 22 + # The result will work with any vulkan-loader version. 23 23 fetchSubmodules = true; 24 24 }; 25 25