ramalama: remove explicit check of mlx-lm availability

It's now available on linux and darwin for both cpu architectures
ramalama package targets.
This commit is contained in:
Ihar Hrachyshka
2026-01-25 15:29:03 -05:00
parent c2facdf896
commit 04594bc62c
+4 -7
View File
@@ -56,13 +56,10 @@ python3Packages.buildPythonApplication rec {
llama-cpp-vulkan
podman
]
++ (
with python3Packages;
[
huggingface-hub
]
++ lib.optional (lib.meta.availableOn stdenv.hostPlatform mlx-lm) mlx-lm
)
++ (with python3Packages; [
huggingface-hub
mlx-lm
])
)
}
'';