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 ];
19 if stdenv.hostPlatform.isDarwin
20 then callPackage ./darwin.nix { inherit pname version meta; }
21 else callPackage ./linux.nix { inherit pname version meta; }