Skip to content

Commit 7b1bd0d

Browse files
committed
wip
1 parent 8e4a404 commit 7b1bd0d

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

packages/mcl/default.nix

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,28 +5,30 @@
55
nix,
66
nix-eval-jobs,
77
...
8-
}:
9-
let
10-
deps =
8+
}: let
9+
inherit (pkgs.hostPlatform) isLinux isx86;
10+
deps = with pkgs;
1111
[
1212
nix
1313
nix-eval-jobs
1414
]
1515
++ (with pkgs; [
1616
gitMinimal
1717
gawk
18-
dmidecode
1918
jc
2019
edid-decode
2120
coreutils-full
2221
util-linux
2322
xorg.xrandr
24-
glxinfo
23+
perl
24+
alejandra
25+
openssh
2526
cachix
26-
]);
27+
])
28+
++ lib.optionals (isLinux && isx86) [dmidecode glxinfo nixos-install-tools systemd];
2729
excludedTests = (
2830
lib.concatStringsSep "|" [
29-
"(nix\\.(build|run))"
31+
"(nix\\.(build|run|eval))"
3032
"fetchJson|(coda\.)"
3133
"checkPackage"
3234
"generateShardMatrix"

packages/mcl/src/src/mcl/commands/host_info.d

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,6 @@ Info getInfo()
178178
return info;
179179
}
180180

181-
182-
183181
struct Info
184182
{
185183
SoftwareInfo softwareInfo;

0 commit comments

Comments
 (0)