koboldcpp: 1.96 -> 1.96.2 (#428922)

This commit is contained in:
Gaétan Lepage
2025-08-04 01:40:35 +02:00
committed by GitHub
+2 -8
View File
@@ -41,13 +41,13 @@ let
in
effectiveStdenv.mkDerivation (finalAttrs: {
pname = "koboldcpp";
version = "1.96";
version = "1.96.2";
src = fetchFromGitHub {
owner = "LostRuins";
repo = "koboldcpp";
tag = "v${finalAttrs.version}";
hash = "sha256-/kHx2v9g0o5eh38d9hlhc724vQNTXVpaX1GeQouJPhk=";
hash = "sha256-OSAFJ2z6vSTTOovgcF/TZvug51uydmZmkjamN/xv2dc=";
};
enableParallelBuilding = true;
@@ -89,12 +89,6 @@ effectiveStdenv.mkDerivation (finalAttrs: {
(lib.optionals cublasSupport "CUDA_DOCKER_ARCH=${builtins.head cudaArches}")
];
env = {
# Fixes an issue where "fprintf" is being called with a format string that isn't a string literal
NIX_CFLAGS_COMPILE = lib.optionalString vulkanSupport "-Wno-error=format-security";
NIX_CXXFLAGS_COMPILE = lib.optionalString vulkanSupport "-Wno-error=format-security";
};
installPhase = ''
runHook preInstall