Skip to content

Commit

Permalink
Fix hydration of subpackages
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasjm committed Sep 27, 2024
1 parent 3c125e8 commit befc446
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nix/makeEnvironment.nix
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ let
settings = if pkg ? "settings" then pkg.settings else {};

# Different for hydrated
packages = map (p: mkSubPackageMetadata pkg p) (pkg.args.packages or []);
packages = map (p: mkSubPackageMetadata pkg p) (pkg.settings.packages or []);

# Hydrated
meta = uiMetadata.chooseInterestingMeta pkg;
Expand Down

0 comments on commit befc446

Please sign in to comment.