Unverified Commit 4b0d1daf authored by Randy Eckenrode's avatar Randy Eckenrode
Browse files

Revert "guile_3_0: fix build with clang 16 on x86_64-darwin"

This reverts commit f8382587.
parent 9f8ad2a3
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -36,10 +36,9 @@ builder rec {
  outputs = [ "out" "dev" "info" ];
  setOutputFlags = false; # $dev gets into the library otherwise

  depsBuildBuild = if stdenv.buildPlatform.isDarwin
    then [ buildPackages.darwin.apple_sdk_11_0.stdenv.cc ]
    else [ buildPackages.stdenv.cc ]
  ++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform)
  depsBuildBuild = [
    buildPackages.stdenv.cc
  ] ++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform)
    pkgsBuildBuild.guile_3_0;
  nativeBuildInputs = [
    makeWrapper
+1 −1
Original line number Diff line number Diff line
@@ -18205,7 +18205,7 @@ with pkgs;
  guile_2_2 = callPackage ../development/interpreters/guile/2.2.nix { };
  guile_3_0 = darwin.apple_sdk_11_0.callPackage ../development/interpreters/guile/3.0.nix { };
  guile_3_0 = callPackage ../development/interpreters/guile/3.0.nix { };
  guile = guile_3_0;