File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed
applications/version-management/git
development/interpreters/python/cpython Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -476,6 +476,13 @@ stdenv.mkDerivation (finalAttrs: {
476476 + lib . optionalString ( stdenv . hostPlatform . isDarwin && stdenv . hostPlatform . isAarch64 ) ''
477477 disable_test t7527-builtin-fsmonitor
478478 ''
479+ +
480+ lib . optionalString ( stdenv . hostPlatform . isStatic && stdenv . hostPlatform . system == "x86_64-linux" )
481+ ''
482+ # https://github.com/NixOS/nixpkgs/pull/394957
483+ # > t2082-parallel-checkout-attributes.sh (Wstat: 256 (exited 1) Tests: 5 Failed: 1)
484+ disable_test t2082-parallel-checkout-attributes
485+ ''
479486 + lib . optionalString stdenv . hostPlatform . isMusl ''
480487 # Test fails (as of 2.17.0, musl 1.1.19)
481488 disable_test t3900-i18n-commit
Original file line number Diff line number Diff line change @@ -815,7 +815,12 @@ stdenv.mkDerivation (finalAttrs: {
815815 platforms = platforms . linux ++ platforms . darwin ++ platforms . windows ++ platforms . freebsd ;
816816 mainProgram = executable ;
817817 maintainers = lib . teams . python . members ;
818+ # static build on x86_64-darwin/aarch64-darwin breaks with:
819+ # configure: error: C compiler cannot create executables
820+
818821 # mingw patches only apply to Python 3.11 currently
819- broken = ( lib . versions . minor version ) != "11" && stdenv . hostPlatform . isWindows ;
822+ broken =
823+ ( lib . versions . minor version != "11" && stdenv . hostPlatform . isWindows )
824+ || ( stdenv . hostPlatform . isStatic && stdenv . hostPlatform . isDarwin ) ;
820825 } ;
821826} )
You can’t perform that action at this time.
0 commit comments