We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bda8ae7 commit de6a254Copy full SHA for de6a254
modules/package.nix
@@ -184,6 +184,11 @@ in {
184
};
185
all = mkOption {
186
type = componentType;
187
+ apply = all: all // {
188
+ # TODO: Should this check for the entire component
189
+ # definition to match, rather than just the identifier?
190
+ depends = builtins.filter (p: p.identifier != config.package.identifier) all.depends;
191
+ };
192
description = "The merged dependencies of all other components";
193
194
0 commit comments