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