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 ab6c42dCopy full SHA for ab6c42d
ci/matrix.nix
@@ -5,7 +5,9 @@
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;
10
- });
+ quickshell-unwrapped = nixpkgs.callPackage ../unwrapped.nix (
+ compilerOverride //
+ {inherit (checkouts.latest) wayland-protocols;}
11
+ );
12
+ pkg = (nixpkgs.callPackage ../default.nix {inherit quickshell-unwrapped;});
13
in pkg
0 commit comments