Merge pull request #314992 from cig0/update-application

lmstudio: 0.2.22 -> 0.2.24
This commit is contained in:
Pol Dellaiera
2024-05-29 09:02:32 +02:00
committed by GitHub
4 changed files with 14 additions and 5 deletions

View File

@@ -3759,6 +3759,15 @@
github = "ciferkey"; github = "ciferkey";
githubId = 101422; 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 = { cigrainger = {
name = "Christopher Grainger"; name = "Christopher Grainger";
email = "chris@amplified.ai"; email = "chris@amplified.ai";

View File

@@ -10,8 +10,8 @@ stdenv.mkDerivation {
inherit meta pname version; inherit meta pname version;
src = fetchurl { src = fetchurl {
url = "https://releases.lmstudio.ai/mac/arm64/${version}/b/latest/LM-Studio-${version}-arm64.dmg"; url = "https://releases.lmstudio.ai/mac/arm64/${version}/latest/LM-Studio-${version}-arm64.dmg";
hash = "sha256-kb1XoTZjhCL1+CsV+r3/EN0srzIJ43H2VMZ779dVq1k="; hash = "sha256-wl3uyRtqY5w8NnESBKcP+CicIh8cCkKmrcVuiijzzTQ=";
}; };
nativeBuildInputs = [ undmg ]; nativeBuildInputs = [ undmg ];

View File

@@ -8,7 +8,7 @@
let let
src = fetchurl { src = fetchurl {
url = "https://releases.lmstudio.ai/linux/${version}/beta/LM_Studio-${version}.AppImage"; 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; }; appimageContents = appimageTools.extractType2 { inherit pname version src; };

View File

@@ -5,13 +5,13 @@
}: }:
let let
pname = "lmstudio"; pname = "lmstudio";
version = "0.2.22"; version = "0.2.24";
meta = { meta = {
description = "LM Studio is an easy to use desktop app for experimenting with local and open-source Large Language Models (LLMs)"; 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/"; homepage = "https://lmstudio.ai/";
license = lib.licenses.unfree; license = lib.licenses.unfree;
mainProgram = "lmstudio"; mainProgram = "lmstudio";
maintainers = with lib.maintainers; [ drupol eeedean ]; maintainers = with lib.maintainers; [ cig0 eeedean ];
platforms = lib.platforms.linux ++ [ "aarch64-darwin" ]; platforms = lib.platforms.linux ++ [ "aarch64-darwin" ];
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
}; };