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.
allHsPkgsComponents
1 parent 6a431ff commit 4b6ad33Copy full SHA for 4b6ad33
builder/shell-for.nix
@@ -68,7 +68,8 @@ let
68
selectedComponents =
69
lib.filter isSelectedComponent (lib.attrValues transitiveDependenciesComponents);
70
71
- allHsPkgsComponents = lib.concatMap haskellLib.getAllComponents (builtins.attrValues hsPkgs);
+ allHsPkgsComponents = lib.concatMap haskellLib.getAllComponents
72
+ (lib.filter (x: !(x.isRedirect or false)) (builtins.attrValues hsPkgs));
73
74
# Given a list of `depends`, removes those which are selected components
75
removeSelectedInputs =
0 commit comments