File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 147147 drv = runCommand "${ componentName } -${ ghc . name } -env" {
148148 preferLocalBuild = true ;
149149 passthru = {
150- inherit targetPrefix ;
150+ inherit script targetPrefix ;
151151 inherit ( ghc ) version meta ;
152152 } ;
153153 propagatedBuildInputs = configFiles . libDeps ;
Original file line number Diff line number Diff line change 204204 drv = runCommand "${ ghc . targetPrefix } ${ fullName } -config" {
205205 nativeBuildInputs = [ ghc ] ;
206206 propagatedBuildInputs = libDeps ;
207+ passthru = {
208+ inherit ( ghc ) targetPrefix ;
209+ inherit script libDeps ghcCommand ghcCommandCaps libDir packageCfgDir component ;
210+ } ;
207211 } ( ''
208212 mkdir -p $out
209213 configFiles=$out
Original file line number Diff line number Diff line change 182182
183183 passthru = ( mkDrvArgs . passthru or { } ) // {
184184 ghc = ghcEnv . drv ;
185- inherit configFiles ;
185+ configFiles . drv ;
186186 } ;
187187 } // lib . optionalAttrs exactDeps {
188- CABAL_CONFIG = "${ configFiles } /cabal.config" ;
188+ CABAL_CONFIG = "${ configFiles . drv } /cabal.config" ;
189189 } )
You can’t perform that action at this time.
0 commit comments