Unverified Commit 8ad8ca31 authored by Masum Reza's avatar Masum Reza Committed by GitHub
Browse files

Merge pull request #335784 from DontEatOreo/update-koboldcpp

koboldcpp: 1.72 -> 1.73
parents 1bd56ac6 3ab95873
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -53,13 +53,13 @@ let
in
effectiveStdenv.mkDerivation (finalAttrs: {
  pname = "koboldcpp";
  version = "1.72";
  version = "1.73";

  src = fetchFromGitHub {
    owner = "LostRuins";
    repo = "koboldcpp";
    rev = "refs/tags/v${finalAttrs.version}";
    hash = "sha256-DePcBVNXIWIlOXyNeNMUFFIQxQuwqG8KBUh2/X7R6X8=";
    hash = "sha256-S0MonY2rIAkbJnTaDVc2YiGPjOaevgp82mt6JwWdN1U=";
  };

  enableParallelBuilding = true;
@@ -164,13 +164,14 @@ effectiveStdenv.mkDerivation (finalAttrs: {
  passthru.updateScript = gitUpdater { rev-prefix = "v"; };

  meta = {
    changelog = "https://github.com/LostRuins/koboldcpp/releases/tag/v${finalAttrs.version}";
    description = "Way to run various GGML and GGUF models";
    license = lib.licenses.agpl3Only;
    mainProgram = "koboldcpp";
    maintainers = with lib.maintainers; [
      maxstrid
      donteatoreo
    ];
    mainProgram = "koboldcpp";
    platforms = lib.platforms.unix;
  };
})