Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / vulkan-utility-libraries / default.nix
blobc79f599f5c6503bd46470525ae497c94014e542c
1 { lib, stdenv, fetchFromGitHub, cmake, python3, vulkan-headers }:
3 stdenv.mkDerivation (finalAttrs: {
4   pname = "vulkan-utility-libraries";
5   version = "1.3.270";
7   src = fetchFromGitHub {
8     owner = "KhronosGroup";
9     repo = "Vulkan-Utility-Libraries";
10     rev = "v${finalAttrs.version}";
11     hash = "sha256-P1v5UEAooTDGA10K4uck8lhcrbW2ccl44gWIGVnZ6uo=";
12   };
14   nativeBuildInputs = [ cmake python3 ];
15   buildInputs = [ vulkan-headers ];
17   meta = with lib; {
18     description = "A 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 = [];
23   };