From 4d67dc7acceac0b46daea0985e367a32e061ae30 Mon Sep 17 00:00:00 2001 From: Artem Leshchev Date: Tue, 6 Aug 2024 21:59:11 -0500 Subject: [PATCH] python3Packages.awscrt: remove pin of gcc version stdenv is new enough now on all platforms. --- pkgs/development/python-modules/awscrt/default.nix | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/pkgs/development/python-modules/awscrt/default.nix b/pkgs/development/python-modules/awscrt/default.nix index f7320137d717..3201deab5029 100644 --- a/pkgs/development/python-modules/awscrt/default.nix +++ b/pkgs/development/python-modules/awscrt/default.nix @@ -5,7 +5,6 @@ cmake, perl, stdenv, - gcc10, CoreFoundation, Security, pythonOlder, @@ -28,13 +27,7 @@ buildPythonPackage rec { Security ]; - # gcc <10 is not supported, LLVM on darwin is just fine - nativeBuildInputs = - [ cmake ] - ++ lib.optionals (!stdenv.isDarwin && stdenv.isAarch64) [ - gcc10 - perl - ]; + nativeBuildInputs = [ cmake ] ++ lib.optionals (!stdenv.isDarwin) [ perl ]; dontUseCmakeConfigure = true;