Skip to content

Commit df95783

Browse files
committed
fix(mcl): Switch back ldc compiler
1 parent 261a694 commit df95783

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

packages/mcl/default.nix

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@
55
nix,
66
nix-eval-jobs,
77
...
8-
}: let
8+
}:
9+
let
910
inherit (pkgs.hostPlatform) isLinux isx86;
10-
deps = with pkgs;
11+
deps =
12+
with pkgs;
1113
[
1214
nix
1315
nix-eval-jobs
@@ -25,7 +27,12 @@
2527
openssh
2628
cachix
2729
])
28-
++ lib.optionals (isLinux && isx86) [dmidecode glxinfo nixos-install-tools systemd];
30+
++ lib.optionals (isLinux && isx86) [
31+
dmidecode
32+
glxinfo
33+
nixos-install-tools
34+
systemd
35+
];
2936
excludedTests = (
3037
lib.concatStringsSep "|" [
3138
"(nix\\.(build|run|eval))"
@@ -58,13 +65,11 @@ buildDubPackage rec {
5865
'';
5966

6067
dubBuildFlags = [
61-
"--compiler=dmd"
6268
"-b"
6369
"debug"
6470
];
6571

6672
dubTestFlags = [
67-
"--compiler=dmd"
6873
"--"
6974
"-e"
7075
excludedTests

0 commit comments

Comments
 (0)