mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 03:34:58 +00:00
20aa41fb81
We have a new enough one by default now
13 lines
402 B
Nix
13 lines
402 B
Nix
{ qt6Packages, makeScopeWithSplicing', generateSplicesForMkScope }:
|
|
|
|
makeScopeWithSplicing' {
|
|
otherSplices = generateSplicesForMkScope "yuzuPackages";
|
|
f = self: qt6Packages // {
|
|
compat-list = self.callPackage ./compat-list.nix {};
|
|
nx_tzdb = self.callPackage ./nx_tzdb.nix {};
|
|
|
|
mainline = self.callPackage ./mainline.nix {};
|
|
early-access = self.callPackage ./early-access {};
|
|
};
|
|
}
|