File tree 2 files changed +8
-3
lines changed
2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -359,14 +359,19 @@ let
359
359
else
360
360
grep '^version:' ${ ghcSrc } /libraries/${ name } /${ name } .cabal.in
361
361
fi
362
- '' ) ( [ "base" "ghc-prim" "template-haskell" ]
363
- ++ pkgs . lib . optional ( builtins . compareVersions ghc . version "9.0" < 0 ) "integer-gmp"
362
+ '' ) ( [ "base" "ghc-prim" "template-haskell" "integer-gmp" ]
364
363
++ pkgs . lib . optional ( builtins . compareVersions ghc . version "9.0" >= 0 ) "ghc-bignum" ) ) }
365
364
${ pkgs . lib . optionalString ( builtins . compareVersions ghc . version "9.2" >= 0 ) ''
366
365
echo '---'
367
366
echo "name: ghc"
368
367
echo "version: ${ ghc . version } "
369
368
echo '---'
369
+ echo "name: ghc-boot"
370
+ echo "version: ${ ghc . version } "
371
+ echo '---'
372
+ echo "name: ghc-boot-th"
373
+ echo "version: ${ ghc . version } "
374
+ echo '---'
370
375
echo "name: ghci"
371
376
echo "version: ${ ghc . version } "
372
377
echo '---'
Original file line number Diff line number Diff line change @@ -181,7 +181,7 @@ in rec {
181
181
inherit subDir ;
182
182
includeSiblings = true ;
183
183
}
184
- else if builtins . elem subDir [ "libraries/ghc-heap" "utils/remote-iserv" "libraries/ghci" "libraries/template-haskell" "utils/iserv" "libraries/ghc-prim" ]
184
+ else if builtins . elem subDir [ "libraries/ghc-heap" "utils/remote-iserv" "libraries/ghci" "libraries/template-haskell" "utils/iserv" "libraries/ghc-prim" "libraries/libiserv" ]
185
185
then "${ ghc . passthru . configured-src } /${ subDir } "
186
186
else "${ ghc . passthru . raw-src } /${ subDir } " ;
187
187
nix = callCabal2Nix ghcName "${ ghcName } -${ pkgName } " src ;
You can’t perform that action at this time.
0 commit comments