From b9fc326a9ab4c5bd1cdc112157c627d564ed0d46 Mon Sep 17 00:00:00 2001 From: Robert Hensing Date: Thu, 3 Apr 2025 23:21:11 +0200 Subject: [PATCH] packaging/dependency: Clarify darwinMinVersion (cherry picked from commit 4be92e7b82376a76e78622d61c7db047f6bbf402) --- packaging/dependencies.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packaging/dependencies.nix b/packaging/dependencies.nix index 0af670bfb..ed05843c7 100644 --- a/packaging/dependencies.nix +++ b/packaging/dependencies.nix @@ -26,6 +26,9 @@ let # Despite the use of the 10.13 deployment target here, the aligned # allocation function Clang uses with this setting actually works # all the way back to 10.6. + # NOTE: this is not just a version constraint, but a request to make Darwin + # provide this version level of support. Removing this minimum version + # request will regress the above error. darwinStdenv = pkgs.overrideSDK prevStdenv { darwinMinVersion = "10.13"; }; in