From 70d0470ab7682ea51679db2b61142f37bd65fe5f Mon Sep 17 00:00:00 2001 From: Emily Date: Sat, 5 Oct 2024 20:52:07 +0100 Subject: [PATCH] _7zz: remove code for macOS < 11 --- pkgs/tools/archivers/7zz/default.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkgs/tools/archivers/7zz/default.nix b/pkgs/tools/archivers/7zz/default.nix index db6c8883c0002..1ea1ce40b631f 100644 --- a/pkgs/tools/archivers/7zz/default.nix +++ b/pkgs/tools/archivers/7zz/default.nix @@ -78,10 +78,6 @@ stdenv.mkDerivation (finalAttrs: { ] ++ lib.optionals useUasm [ "MY_ASM=uasm" ] ++ lib.optionals (!useUasm && stdenv.hostPlatform.isx86) [ "USE_ASM=" ] - # We need at minimum 10.13 here because of utimensat, however since - # we need a bump anyway, let's set the same minimum version as the one in - # aarch64-darwin so we don't need additional changes for it - ++ lib.optionals stdenv.hostPlatform.isDarwin [ "MACOSX_DEPLOYMENT_TARGET=10.16" ] # it's the compression code with the restriction, see DOC/License.txt ++ lib.optionals (!enableUnfree) [ "DISABLE_RAR_COMPRESS=true" ] ++ lib.optionals (stdenv.hostPlatform.isMinGW) [ "IS_MINGW=1" "MSYSTEM=1" ];