···1011stdenv.mkDerivation rec {
12 pname = "vulkan-caps-viewer";
13- version = "3.25";
1415 src = fetchFromGitHub {
16 owner = "SaschaWillems";
17 repo = "VulkanCapsViewer";
18- rev = if version == "3.25" then "${version}_fixed" else version;
19- hash = "sha256-JQMnR9WNR8OtcgVfE5iZebdvZ/JmZNDchET5cK/Bruc=";
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.
23 fetchSubmodules = true;
24 };
25
···1011stdenv.mkDerivation rec {
12 pname = "vulkan-caps-viewer";
13+ version = "3.27";
1415 src = fetchFromGitHub {
16 owner = "SaschaWillems";
17 repo = "VulkanCapsViewer";
18+ rev = version;
19+ hash = "sha256-B/FBX63JnBdshNLVMPA0qGnm0c/RGilIahX3VjJnpkI=";
20 # Note: this derivation strictly requires vulkan-header to be the same it was developed against.
21+ # To help us, they've put it in a git-submodule.
22+ # The result will work with any vulkan-loader version.
23 fetchSubmodules = true;
24 };
25