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 91e6c1c commit 47f582fCopy full SHA for 47f582f
flake.nix
@@ -55,6 +55,13 @@
55
doCheck = false;
56
});
57
58
+ darwin = (final: prev: prev.lib.optionalAttrs (prev.stdenv.hostPlatform.isDarwin) {
59
+ # error: use of undeclared identifier 'IP_RECVTOS'
60
+ # for whatever reason nixpkgs 24.11 defines x86_64-darwin
61
+ # to be sdk-10.12.2, and aarch64-darwin to be sdk-11.
62
+ # nixpkgs 25.05 will drop sdk-10.12, and unify aarch64 and x86 at last.
63
+ apple-sdk = prev.apple-sdk_11;
64
+ });
65
};
66
supportedSystems = [
67
"x86_64-linux"
0 commit comments