Merge pull request #330770 from crertel/lmstudio-0.2.29

lmstudio: 0.2.27 -> 0.2.31
This commit is contained in:
Pol Dellaiera 2024-08-04 04:05:22 +02:00 committed by GitHub
commit e32d4c5654
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 6 additions and 6 deletions

View File

@ -9,8 +9,8 @@ stdenv.mkDerivation {
inherit meta pname version;
src = fetchurl {
url = "https://releases.lmstudio.ai/mac/arm64/${version}/latest/LM-Studio-${version}-arm64.dmg";
hash = "sha256-zLbkb33Fmz2b+cloEINJybuj+i3ya+EVxb5CPWo/iXk=";
url = "https://releases.lmstudio.ai/mac/arm64/${version}/1/LM-Studio-${version}-arm64.dmg";
hash = "sha256-ZitdLHuGIH22Ohk7UWVz32BPFTj796HoR+5zEs5rh6E=";
};
nativeBuildInputs = [ undmg ];

View File

@ -6,8 +6,8 @@
}:
let
src = fetchurl {
url = "https://releases.lmstudio.ai/linux/x86/${version}/beta/LM_Studio-${version}.AppImage";
hash = "sha256-Mui9QxK7UDnt6cWpYzsoy4hp7P46kx/53+em7Alu1BA=";
url = "https://files.lmstudio.ai/linux/${version}/beta/LM_Studio-${version}.AppImage";
hash = "sha256-zC8QQNsT1X8ICiYLy/jYMVp8w8NP7ghtVF06UMC4eOg=";
};
appimageContents = appimageTools.extractType2 { inherit pname version src; };

View File

@ -5,13 +5,13 @@
}:
let
pname = "lmstudio";
version = "0.2.27";
version = "0.2.31";
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; [ cig0 eeedean ];
maintainers = with lib.maintainers; [ cig0 eeedean crertel ];
platforms = [ "x86_64-linux" "aarch64-darwin" ];
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
};