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.
This commit is contained in:
Hraban Luyat 2024-01-06 23:09:33 -05:00
parent d11f8b4c27
commit 51c0a89b26

View file

@ -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
];