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 417a7da commit afb52d9Copy full SHA for afb52d9
builder/ghc-for-component-wrapper.nix
@@ -147,6 +147,7 @@ let
147
drv = runCommand "${componentName}-${ghc.name}-env" {
148
preferLocalBuild = true;
149
passthru = {
150
+ inherit targetPrefix;
151
inherit (ghc) version meta;
152
};
153
propagatedBuildInputs = configFiles.libDeps;
@@ -161,4 +162,4 @@ let
161
162
in {
163
inherit script drv targetPrefix;
164
baseGhc = ghc;
-}
165
+}
builder/shell-for.nix
@@ -181,7 +181,7 @@ in
181
NIX_GHC_LIBDIR = ghcEnv.drv + "/" + configFiles.libDir;
182
183
passthru = (mkDrvArgs.passthru or {}) // {
184
- ghc = ghcEnv;
+ ghc = ghcEnv.drv;
185
inherit configFiles;
186
187
} // lib.optionalAttrs exactDeps {
0 commit comments