koboldcpp: 1.96 -> 1.96.2 (#428922)

authored by Gaétan Lepage and committed by GitHub 7752b912 4f212eaa

+2 -8
+2 -8
pkgs/by-name/ko/koboldcpp/package.nix
··· 41 41 in 42 42 effectiveStdenv.mkDerivation (finalAttrs: { 43 43 pname = "koboldcpp"; 44 - version = "1.96"; 44 + version = "1.96.2"; 45 45 46 46 src = fetchFromGitHub { 47 47 owner = "LostRuins"; 48 48 repo = "koboldcpp"; 49 49 tag = "v${finalAttrs.version}"; 50 - hash = "sha256-/kHx2v9g0o5eh38d9hlhc724vQNTXVpaX1GeQouJPhk="; 50 + hash = "sha256-OSAFJ2z6vSTTOovgcF/TZvug51uydmZmkjamN/xv2dc="; 51 51 }; 52 52 53 53 enableParallelBuilding = true; ··· 88 88 (makeBool "LLAMA_METAL" metalSupport) 89 89 (lib.optionals cublasSupport "CUDA_DOCKER_ARCH=${builtins.head cudaArches}") 90 90 ]; 91 - 92 - env = { 93 - # Fixes an issue where "fprintf" is being called with a format string that isn't a string literal 94 - NIX_CFLAGS_COMPILE = lib.optionalString vulkanSupport "-Wno-error=format-security"; 95 - NIX_CXXFLAGS_COMPILE = lib.optionalString vulkanSupport "-Wno-error=format-security"; 96 - }; 97 91 98 92 installPhase = '' 99 93 runHook preInstall