ggml: 0.9.11 -> 0.10.0 (#512083)

This commit is contained in:
kirillrdy
2026-04-21 20:33:05 +00:00
committed by GitHub
+5 -4
View File
@@ -7,13 +7,16 @@
stdenv.mkDerivation (finalAttrs: {
pname = "ggml";
version = "0.9.11";
version = "0.10.0";
__structuredAttrs = true;
strictDeps = true;
src = fetchFromGitHub {
owner = "ggml-org";
repo = "ggml";
tag = "v${finalAttrs.version}";
hash = "sha256-huGHwNG2wRwBP32spkHOPtdO6/I3mIxvYGLUzqQi2tc=";
hash = "sha256-2Yu7kFKu2VaiGGkb0r+L59VbcWijtWZyJmuyXLb+414=";
};
# The cmake package does not handle absolute CMAKE_INSTALL_LIBDIR and CMAKE_INSTALL_INCLUDEDIR
@@ -29,8 +32,6 @@ stdenv.mkDerivation (finalAttrs: {
"@CMAKE_INSTALL_FULL_LIBDIR@"
'';
strictDeps = true;
nativeBuildInputs = [
cmake
];