We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 261a694 commit df95783Copy full SHA for df95783
packages/mcl/default.nix
@@ -5,9 +5,11 @@
5
nix,
6
nix-eval-jobs,
7
...
8
-}: let
+}:
9
+let
10
inherit (pkgs.hostPlatform) isLinux isx86;
- deps = with pkgs;
11
+ deps =
12
+ with pkgs;
13
[
14
nix
15
nix-eval-jobs
@@ -25,7 +27,12 @@
25
27
openssh
26
28
cachix
29
])
- ++ 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
+ ];
36
excludedTests = (
37
lib.concatStringsSep "|" [
38
"(nix\\.(build|run|eval))"
@@ -58,13 +65,11 @@ buildDubPackage rec {
58
65
'';
59
66
60
67
dubBuildFlags = [
61
- "--compiler=dmd"
62
68
"-b"
63
69
"debug"
64
70
];
71
72
dubTestFlags = [
73
"--"
74
"-e"
75
excludedTests
0 commit comments