From 527e6be2dcfd2aef0178f4f8d3ede8c944aae71c Mon Sep 17 00:00:00 2001 From: Theodore Ni <3806110+tjni@users.noreply.github.com> Date: Sun, 10 Nov 2024 14:38:35 -0800 Subject: [PATCH] netclient: use new Darwin SDK pattern --- pkgs/by-name/ne/netclient/package.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/by-name/ne/netclient/package.nix b/pkgs/by-name/ne/netclient/package.nix index 66a2bae71f46..5351ede7bfc2 100644 --- a/pkgs/by-name/ne/netclient/package.nix +++ b/pkgs/by-name/ne/netclient/package.nix @@ -3,7 +3,6 @@ , lib , libX11 , stdenv -, darwin }: buildGoModule rec { @@ -19,8 +18,7 @@ buildGoModule rec { vendorHash = "sha256-ENrBJ0XbCfLfzTVZEVtDBjGxupdiLI7USGVImkYWDdY="; - buildInputs = lib.optional stdenv.hostPlatform.isDarwin darwin.apple_sdk.frameworks.Cocoa - ++ lib.optional stdenv.hostPlatform.isLinux libX11; + buildInputs = lib.optional stdenv.hostPlatform.isLinux libX11; hardeningEnabled = [ "pie" ];