Skip to content

Fix for older versions of nixpkgs #2326

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 4, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/configuration-nix.nix
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ in addPackageKeys {
# for whatever reason nixpkgs 24.11 defines x86_64-darwin
# to be sdk-10.12.2, and aarch64-darwin to be sdk-11.
# nixpkgs 25.05 will drop sdk-10.12, and unify aarch64 and x86 at last.
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 && pkgs ? apple-sdk && lib.versionOlder pkgs.apple-sdk.version "11") [
pkgs.apple-sdk_11
(pkgs.darwinMinVersionHook "11.0")
];
Expand Down
Loading