1
0

Compare commits

...

2 Commits

Author SHA1 Message Date
f1c260d4f7 make ci.ni "all" a derivation
this is to stop hydra complaining
2024-10-06 18:04:56 +01:00
3d611d3ba2 fix unstable qemu build?
nix-repl> (lib.versionOlder "24.11pre-git" "24.11")
true

nix-repl> (lib.versionOlder "24.11pre-git" "24.10")
false

n
2024-10-06 18:04:48 +01:00
2 changed files with 5 additions and 2 deletions

5
ci.nix
View File

@ -72,5 +72,8 @@ let
};
in jobs //
{
all = pkgs.lib.collect pkgs.lib.isDerivation jobs;
all = pkgs.mkShell {
name = "all tests";
contents = pkgs.lib.collect pkgs.lib.isDerivation jobs;
};
}

View File

@ -281,7 +281,7 @@ extraPkgs // {
tpmSupport = false;
uringSupport = false;
capstoneSupport = false;
} // lib.optionalAttrs (lib.versionOlder lib.version "24.11") {
} // lib.optionalAttrs (lib.versionOlder lib.version "24.10") {
texinfo = null;
};
in q.override overrides;