mirror of
https://git.outfoxxed.me/quickshell/quickshell.git
synced 2025-11-04 19:04:56 +11:00
11 lines
369 B
Nix
11 lines
369 B
Nix
{
|
|
qtver,
|
|
compiler,
|
|
}: let
|
|
checkouts = import ./nix-checkouts.nix;
|
|
nixpkgs = checkouts.${builtins.replaceStrings ["."] ["_"] qtver};
|
|
compilerOverride = (nixpkgs.callPackage ./variations.nix {}).${compiler};
|
|
pkg = (nixpkgs.callPackage ../default.nix {}).override (compilerOverride // {
|
|
wayland-protocols = checkouts.latest.wayland-protocols;
|
|
});
|
|
in pkg
|