From fb26e7f3cb811bf9a4851bea64db8c4bee1efda5 Mon Sep 17 00:00:00 2001 From: TomaSajt <62384384+TomaSajt@users.noreply.github.com> Date: Thu, 31 Oct 2024 20:07:50 +0100 Subject: [PATCH] mlx42: remove stuff already included by apple-sdk --- pkgs/by-name/ml/mlx42/package.nix | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/pkgs/by-name/ml/mlx42/package.nix b/pkgs/by-name/ml/mlx42/package.nix index 72b9f9cc3d23..16634879e2f3 100644 --- a/pkgs/by-name/ml/mlx42/package.nix +++ b/pkgs/by-name/ml/mlx42/package.nix @@ -4,7 +4,6 @@ fetchFromGitHub, cmake, glfw, - darwin, enableShared ? !stdenv.hostPlatform.isStatic, enableDebug ? false, }: @@ -33,16 +32,7 @@ stdenv.mkDerivation (finalAttrs: { nativeBuildInputs = [ cmake ]; - buildInputs = - [ glfw ] - ++ lib.optionals stdenv.hostPlatform.isDarwin ( - with darwin.apple_sdk.frameworks; - [ - OpenGL - Cocoa - IOKit - ] - ); + buildInputs = [ glfw ]; cmakeFlags = [ (lib.cmakeBool "DEBUG" enableDebug) ];