base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / vu / vulkan-utility-libraries / package.nix
blob4c31f09958deb630dfd94ca6becc02e0a778ef28
1 { lib, stdenv, fetchFromGitHub, cmake, python3, vulkan-headers }:
3 stdenv.mkDerivation (finalAttrs: {
4   pname = "vulkan-utility-libraries";
5   version = "1.3.296.0";
7   src = fetchFromGitHub {
8     owner = "KhronosGroup";
9     repo = "Vulkan-Utility-Libraries";
10     rev = "vulkan-sdk-${finalAttrs.version}";
11     hash = "sha256-WDRDpUOZN/akUA6gsJMlC2GKolVt3g1NerKqe7aLhek=";
12   };
14   nativeBuildInputs = [ cmake python3 ];
15   buildInputs = [ vulkan-headers ];
17   meta = with lib; {
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 ];
23   };