Skip to content

Commit

Permalink
refactor(pkgs/yuzu-early-access): merge its dependencies into a singl…
Browse files Browse the repository at this point in the history
…e folder
  • Loading branch information
wrvsrx committed May 5, 2024
1 parent 8c27925 commit a5386f7
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 3 deletions.
8 changes: 5 additions & 3 deletions pkgs/to-normal-packages/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,11 @@ rec {
yalantinglibs = callPackage ./yalantinglibs { source = sources.yalantinglibs; };
nx_tzdb = callPackage ./nx_tzdb { source = sources.nx_tzdb; };
compat-list = callPackage ./compat-list { source = sources.compat-list; };
yuzu-early-access = qt6Packages.callPackage ./yuzu-earyly-access {
source = sources.yuzu;
inherit nx_tzdb compat-list;
yuzu-early-access = import ./yuzu {
sources = {
inherit (sources) yuzu nx_tzdb compat-list;
};
inherit pkgs;
};

# my packages
Expand Down
11 changes: 11 additions & 0 deletions pkgs/to-normal-packages/yuzu/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{ sources, pkgs }:
let
inherit (pkgs) callPackage qt6Packages;
nx_tzdb = callPackage ./nx_tzdb { source = sources.nx_tzdb; };
compat-list = callPackage ./compat-list { source = sources.compat-list; };
yuzu = qt6Packages.callPackage ./yuzu {
source = sources.yuzu;
inherit nx_tzdb compat-list;
};
in
yuzu
File renamed without changes.

0 comments on commit a5386f7

Please sign in to comment.