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 ab35f48 commit b197a5aCopy full SHA for b197a5a
builder/shell-for.nix
@@ -114,9 +114,10 @@ let
114
# Set up a "dummy" component to use with ghcForComponent.
115
component = {
116
depends = packageInputs;
117
- libs = [];
118
- pkgconfig = [];
119
- frameworks = [];
+ pre-existing = lib.concatMap (x: (haskellLib.dependToLib x).config.pre-existing or []) packageInputs;
+ libs = lib.concatMap (x: (haskellLib.dependToLib x).config.libs or []) packageInputs;
+ pkgconfig = lib.concatMap (x: (haskellLib.dependToLib x).config.pkgconfig or []) packageInputs;
120
+ frameworks = lib.concatMap (x: (haskellLib.dependToLib x).config.frameworks or []) packageInputs;
121
doExactConfig = false;
122
};
123
configFiles = makeConfigFiles {
0 commit comments