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.
1 parent fd0056d commit e3a3489Copy full SHA for e3a3489
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.version "11") [
+ packages.network.components.library.libs = lib.mkIf (pkgs.stdenv.hostPlatform.isDarwin && lib.versionOlder (pkgs.apple-sdk or pkgs.darwin.apple_sdk.sdk).version "11") [
203
pkgs.apple-sdk_11
204
(pkgs.darwinMinVersionHook "11.0")
205
];
0 commit comments