Skip to content

Commit

Permalink
dmd: build using gcc11Stdenv
Browse files Browse the repository at this point in the history
The DMD test suite has been failing since we updated to gcc12, as
reported by @trofi:

  #206907 (comment)

Let's use gcc11Stdenv for now.
  • Loading branch information
Adam Joseph committed May 10, 2023
1 parent 794d821 commit 38a03e1
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6838,9 +6838,12 @@ with pkgs;

dleyna-server = callPackage ../development/libraries/dleyna-server { };

dmd = callPackage ../development/compilers/dmd {
dmd = callPackage ../development/compilers/dmd ({
inherit (darwin.apple_sdk.frameworks) Foundation;
};
} // lib.optionalAttrs stdenv.isLinux {
# https://github.com/NixOS/nixpkgs/pull/206907#issuecomment-1527034123
stdenv = gcc11Stdenv;
});

dmg2img = callPackage ../tools/misc/dmg2img { };

Expand Down

0 comments on commit 38a03e1

Please sign in to comment.