10 stdenv.mkDerivation (finalAttrs: {
11 pname = "vulkan-utility-libraries";
12 version = "1.3.296.0";
14 src = fetchFromGitHub {
15 owner = "KhronosGroup";
16 repo = "Vulkan-Utility-Libraries";
17 rev = "vulkan-sdk-${finalAttrs.version}";
18 hash = "sha256-WDRDpUOZN/akUA6gsJMlC2GKolVt3g1NerKqe7aLhek=";
25 buildInputs = [ vulkan-headers ];
28 description = "Set of utility libraries for Vulkan";
29 homepage = "https://github.com/KhronosGroup/Vulkan-Utility-Libraries";
30 platforms = platforms.all;
31 license = licenses.asl20;
32 maintainers = with maintainers; [ nickcao ];