chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / lm / lmstudio / package.nix
blobd69b44d284cff3a7617d965d0c82b329d1a6228d
1 { lib
2 , stdenv
3 , callPackage
4 , ...
5 }:
6 let
7   pname = "lmstudio";
8   version = "0.3.3";
9   meta = {
10     description = "LM Studio is an easy to use desktop app for experimenting with local and open-source Large Language Models (LLMs)";
11     homepage = "https://lmstudio.ai/";
12     license = lib.licenses.unfree;
13     mainProgram = "lmstudio";
14     maintainers = with lib.maintainers; [ cig0 eeedean crertel ];
15     platforms = [ "x86_64-linux" "aarch64-darwin" ];
16     sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
17   };
19   if stdenv.hostPlatform.isDarwin
20     then callPackage ./darwin.nix { inherit pname version meta; }
21     else callPackage ./linux.nix  { inherit pname version meta; }