159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
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.290.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "KhronosGroup";
|
|
repo = "Vulkan-Utility-Libraries";
|
|
rev = "vulkan-sdk-${finalAttrs.version}";
|
|
hash = "sha256-dzX2xePUkjL4G+IMwPCUgFs1iKsqwZScQQBDt5toUzc=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
})
|