1 { lib, stdenv, fetchFromGitHub, cmake, python3, vulkan-headers }:
3 stdenv.mkDerivation (finalAttrs: {
4 pname = "vulkan-utility-libraries";
7 src = fetchFromGitHub {
8 owner = "KhronosGroup";
9 repo = "Vulkan-Utility-Libraries";
10 rev = "vulkan-sdk-${finalAttrs.version}";
11 hash = "sha256-WDRDpUOZN/akUA6gsJMlC2GKolVt3g1NerKqe7aLhek=";
14 nativeBuildInputs = [ cmake python3 ];
15 buildInputs = [ vulkan-headers ];
18 description = "Set of utility libraries for Vulkan";
19 homepage = "https://github.com/KhronosGroup/Vulkan-Utility-Libraries";
20 platforms = platforms.all;
21 license = licenses.asl20;
22 maintainers = with maintainers; [ nickcao ];