From 51c0a89b26be77fd9f3a065499ee8d67f23dae80 Mon Sep 17 00:00:00 2001 From: Hraban Luyat Date: Sat, 6 Jan 2024 23:09:33 -0500 Subject: [PATCH] sbcl: apply 2.4.0 patch to all archs Upstream has mainlined this patch, the preprocessor macros take care of only applying the code where necessary. There is no need for nixpkgs to if-guard it further. --- pkgs/development/compilers/sbcl/2.x.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/sbcl/2.x.nix b/pkgs/development/compilers/sbcl/2.x.nix index 751e365dbbba..f91e5147cf6a 100644 --- a/pkgs/development/compilers/sbcl/2.x.nix +++ b/pkgs/development/compilers/sbcl/2.x.nix @@ -81,7 +81,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ texinfo ]; buildInputs = lib.optionals coreCompression [ zstd ]; - patches = lib.optionals (stdenv.hostPlatform.system == "aarch64-darwin" && version == "2.4.0") [ + patches = lib.optionals (version == "2.4.0") [ ./fix-2.4.0-aarch64-darwin.patch ];