Skip to content

Commit 1a8d220

Browse files
committed
ci: corrected override
1 parent 200fed2 commit 1a8d220

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

ci/matrix.nix

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@
55
checkouts = import ./nix-checkouts.nix;
66
nixpkgs = checkouts.${builtins.replaceStrings ["."] ["_"] qtver};
77
compilerOverride = (nixpkgs.callPackage ./variations.nix {}).${compiler};
8-
pkg = (nixpkgs.callPackage ../default.nix {}).override (compilerOverride // {
9-
wayland-protocols = checkouts.latest.wayland-protocols;
8+
pkg = (nixpkgs.callPackage ../default.nix {}).override (prev: {
9+
quickshell-unwrapped = prev.quickshell-unwrapped.override (
10+
compilerOverride //
11+
{inherit (checkouts.latest) wayland-protocols;}
12+
);
1013
});
1114
in pkg

0 commit comments

Comments
 (0)