clblast: fix build with CMake 4 (#448902)

This commit is contained in:
Fabián Heredia Montiel
2025-10-07 09:08:05 -06:00
committed by GitHub
+10
View File
@@ -1,6 +1,7 @@
{
lib,
stdenv,
fetchpatch,
fetchFromGitHub,
cmake,
ninja,
@@ -19,6 +20,15 @@ stdenv.mkDerivation rec {
hash = "sha256-fzenYFCAQ0B2NQgh5OaErv/yNEzjznB6ogRapqfL6P4=";
};
patches = [
(fetchpatch {
name = "clblast-fix-cmake4.patch";
url = "https://github.com/CNugteren/CLBlast/commit/dd714f1b72aa8c341e5a27aa9e968b4ecdaf1abb.patch";
includes = [ "CMakeLists.txt" ];
hash = "sha256-AVFzEdj1CaVSJxOcn5PoqFb+b8k5YgSMD3VhvHeBd7o=";
})
];
nativeBuildInputs = [
cmake
ninja