We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
pkgs.apple-sdk_11
1 parent e3a3489 commit d01c98fCopy full SHA for d01c98f
modules/configuration-nix.nix
@@ -199,7 +199,7 @@ in addPackageKeys {
199
# for whatever reason nixpkgs 24.11 defines x86_64-darwin
200
# to be sdk-10.12.2, and aarch64-darwin to be sdk-11.
201
# nixpkgs 25.05 will drop sdk-10.12, and unify aarch64 and x86 at last.
202
- packages.network.components.library.libs = lib.mkIf (pkgs.stdenv.hostPlatform.isDarwin && lib.versionOlder (pkgs.apple-sdk or pkgs.darwin.apple_sdk.sdk).version "11") [
+ packages.network.components.library.libs = lib.mkIf (pkgs.stdenv.hostPlatform.isDarwin && pkgs ? apple-sdk && lib.versionOlder pkgs.apple-sdk.version "11") [
203
204
(pkgs.darwinMinVersionHook "11.0")
205
];
0 commit comments