Revert "guile_3_0: fix build with clang 16 on x86_64-darwin"
This reverts commit f8382587d9
.
This commit is contained in:
parent
9f8ad2a32a
commit
4b0d1daf51
2 changed files with 4 additions and 5 deletions
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue