We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 200fed2 commit 1a8d220Copy full SHA for 1a8d220
ci/matrix.nix
@@ -5,7 +5,10 @@
5
checkouts = import ./nix-checkouts.nix;
6
nixpkgs = checkouts.${builtins.replaceStrings ["."] ["_"] qtver};
7
compilerOverride = (nixpkgs.callPackage ./variations.nix {}).${compiler};
8
- pkg = (nixpkgs.callPackage ../default.nix {}).override (compilerOverride // {
9
- wayland-protocols = checkouts.latest.wayland-protocols;
+ pkg = (nixpkgs.callPackage ../default.nix {}).override (prev: {
+ quickshell-unwrapped = prev.quickshell-unwrapped.override (
10
+ compilerOverride //
11
+ {inherit (checkouts.latest) wayland-protocols;}
12
+ );
13
});
14
in pkg
0 commit comments