mirror of
https://git.outfoxxed.me/quickshell/quickshell.git
synced 2025-11-04 19:04:56 +11:00
ci: use latest wayland-protocol for all test cases
Fixes missing protocols on old nixpkgs versions
This commit is contained in:
parent
e4d33fa52f
commit
2115f31416
2 changed files with 8 additions and 3 deletions
|
|
@ -2,7 +2,10 @@
|
|||
qtver,
|
||||
compiler,
|
||||
}: let
|
||||
nixpkgs = (import ./nix-checkouts.nix).${builtins.replaceStrings ["."] ["_"] qtver};
|
||||
checkouts = import ./nix-checkouts.nix;
|
||||
nixpkgs = checkouts.${builtins.replaceStrings ["."] ["_"] qtver};
|
||||
compilerOverride = (nixpkgs.callPackage ./variations.nix {}).${compiler};
|
||||
pkg = (nixpkgs.callPackage ../default.nix {}).override compilerOverride;
|
||||
pkg = (nixpkgs.callPackage ../default.nix {}).override (compilerOverride // {
|
||||
wayland-protocols = checkouts.latest.wayland-protocols;
|
||||
});
|
||||
in pkg
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue