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 3e0e9ca commit b445608Copy full SHA for b445608
builder/ghc-for-component-wrapper.nix
@@ -19,11 +19,6 @@
19
let
20
ghc = if enableDWARF then defaults.ghc.dwarf else defaults.ghc;
21
22
- uniqueWithName = list:
23
- lib.concatMap lib.unique (
24
- builtins.attrValues (
25
- builtins.groupBy (x: if __typeOf x == "set" then x.name or "noname" else "notset") list));
26
-
27
inherit (configFiles) targetPrefix ghcCommand ghcCommandCaps packageCfgDir;
28
libDir = "$wrappedGhc/${configFiles.libDir}";
29
docDir = "$wrappedGhc/share/doc/ghc/html";
@@ -159,7 +154,7 @@ let
159
154
inherit script targetPrefix;
160
155
inherit (ghc) version meta;
161
156
};
162
- propagatedBuildInputs = uniqueWithName configFiles.libDeps;
157
+ propagatedBuildInputs = configFiles.libDeps;
163
158
nativeBuildInputs = [ghc];
164
} (''
165
mkdir -p $out/configFiles
0 commit comments