bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
24 lines
726 B
Nix
24 lines
726 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, python3, vulkan-headers }:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "vulkan-utility-libraries";
|
|
version = "1.3.283.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "KhronosGroup";
|
|
repo = "Vulkan-Utility-Libraries";
|
|
rev = "vulkan-sdk-${finalAttrs.version}";
|
|
hash = "sha256-oQC//4RHJjSncQtHPVsYnpLYtXfxSSJdbUBf8clevDI=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake python3 ];
|
|
buildInputs = [ vulkan-headers ];
|
|
|
|
meta = with lib; {
|
|
description = "Set of utility libraries for Vulkan";
|
|
homepage = "https://github.com/KhronosGroup/Vulkan-Utility-Libraries";
|
|
platforms = platforms.all;
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ nickcao ];
|
|
};
|
|
})
|