Unverified Commit 5c8e9f48 authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

Merge pull request #314992 from cig0/update-application

lmstudio: 0.2.22 -> 0.2.24
parents f5e912ce 8cf29145
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -3759,6 +3759,15 @@
    github = "ciferkey";
    githubId = 101422;
  };
  cig0 = {
    name = "Martín Cigorraga";
    email = "cig0.github@gmail.com";
    github = "cig0";
    githubId = 394089;
    keys = [{
      fingerprint = "1828 B459 DB9A 7EE2 03F4 7E6E AFBE ACC5 5D93 84A0";
    }];
  };
  cigrainger = {
    name = "Christopher Grainger";
    email = "chris@amplified.ai";
+2 −2
Original line number Diff line number Diff line
@@ -10,8 +10,8 @@ stdenv.mkDerivation {
  inherit meta pname version;

  src = fetchurl {
    url = "https://releases.lmstudio.ai/mac/arm64/${version}/b/latest/LM-Studio-${version}-arm64.dmg";
    hash = "sha256-kb1XoTZjhCL1+CsV+r3/EN0srzIJ43H2VMZ779dVq1k=";
    url = "https://releases.lmstudio.ai/mac/arm64/${version}/latest/LM-Studio-${version}-arm64.dmg";
    hash = "sha256-wl3uyRtqY5w8NnESBKcP+CicIh8cCkKmrcVuiijzzTQ=";
  };

  nativeBuildInputs = [ undmg ];
+1 −1
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@
let
  src = fetchurl {
    url = "https://releases.lmstudio.ai/linux/${version}/beta/LM_Studio-${version}.AppImage";
    hash = "sha256-hcV8wDhulFAxHDBDKicpEGovwcsn9RaIi/idUz+YzD8=";
    hash = "sha256-1ahPRRgcYfW9eD04yeF4ft+yLn9+nIPOV5Vkv7rMiT8=";
  };

  appimageContents = appimageTools.extractType2 { inherit pname version src; };
+2 −2
Original line number Diff line number Diff line
@@ -5,13 +5,13 @@
}:
let
  pname = "lmstudio";
  version = "0.2.22";
  version = "0.2.24";
  meta = {
    description = "LM Studio is an easy to use desktop app for experimenting with local and open-source Large Language Models (LLMs)";
    homepage = "https://lmstudio.ai/";
    license = lib.licenses.unfree;
    mainProgram = "lmstudio";
    maintainers = with lib.maintainers; [ drupol eeedean ];
    maintainers = with lib.maintainers; [ cig0 eeedean ];
    platforms = lib.platforms.linux ++ [ "aarch64-darwin" ];
    sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
  };