diff --git a/pkgs/os-specific/darwin/by-name/ne/network_cmds/package.nix b/pkgs/os-specific/darwin/by-name/ne/network_cmds/package.nix index ec9d4c32ca1f..fcc585842573 100644 --- a/pkgs/os-specific/darwin/by-name/ne/network_cmds/package.nix +++ b/pkgs/os-specific/darwin/by-name/ne/network_cmds/package.nix @@ -1,7 +1,5 @@ { - lib, - apple-sdk_15, - fetchurl, + fetchFromGitHub, libpcap, libresolv, libutil, @@ -13,7 +11,13 @@ }: let - xnu = apple-sdk_15.sourceRelease "xnu"; + # TODO(reckenrode): Use `sourceRelease` after migration has been merged and all releases updated to the same version. + xnu = fetchFromGitHub { + owner = "apple-oss-distributions"; + repo = "xnu"; + rev = "xnu-11417.121.6"; + hash = "sha256-o4tCuCAIgAYg/Li3wTs12mVWr5C/4vbwu1zi+kJ9d6w="; + }; privateHeaders = stdenvNoCC.mkDerivation { name = "network_cmds-deps-private-headers";