Merge pull request #230827 from amjoseph-nixpkgs/zhf/dmd

dmd: build using gcc11Stdenv
This commit is contained in:
Adam Joseph
2023-05-10 05:21:02 +00:00
committed by GitHub
2 changed files with 6 additions and 2 deletions
@@ -28,6 +28,7 @@ in stdenv.mkDerivation {
tzdata
] ++ lib.optionals hostPlatform.isLinux [
glibc
stdenv.cc.cc.libgcc
];
installPhase = ''
+5 -2
View File
@@ -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 { };