vulkan-memory-allocator: Apply fix to allow specifying version constraints on CMake module (#341851)

This commit is contained in:
Cosima Neidahl 2024-09-24 22:22:25 +02:00 committed by GitHub
commit 54eba24b87
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,6 +1,7 @@
{ lib
, stdenvNoCC
, fetchFromGitHub
, fetchpatch
, cmake
}:
@ -15,6 +16,16 @@ stdenvNoCC.mkDerivation (finalAttrs: {
hash = "sha256-j0Z9OEwQx3RB2cni9eK3gYfwkhOc2ST213b6VseaVzg=";
};
patches = [
# Allows specifying version constraints on the CMake module
# Remove when version > 3.1.0
(fetchpatch {
name = "0001-vulkan-memory-allocator-add-cmake-package-version-file.patch";
url = "https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator/commit/257138b8f5686ae84491a3df9f90a77d5660c3bd.patch";
hash = "sha256-qbQhIJho/WQqzAwB2zzWgGKx4QK9zKmbaGisbNOV8mg=";
})
];
# A compiler is only required for the samples. This lets us use stdenvNoCC.
postPatch = ''
substituteInPlace CMakeLists.txt \