File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 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"
Original file line number Diff line number Diff line change @@ -178,8 +178,6 @@ Info getInfo()
178178 return info;
179179}
180180
181-
182-
183181struct Info
184182{
185183 SoftwareInfo softwareInfo;
You can’t perform that action at this time.
0 commit comments