@@ -50,7 +50,7 @@ let self =
5050 # Terminfo does not work on older ghc cross arm and windows compilers
5151 ( ! haskell-nix . haskellLib . isCrossTarget || ! ( stdenv . targetPlatform . isAarch32 || stdenv . targetPlatform . isAarch64 || stdenv . targetPlatform . isWindows ) || builtins . compareVersions ghc-version "8.10" >= 0 )
5252
53- , # Wheter to build in NUMA support
53+ , # Whether to build in NUMA support
5454 enableNUMA ? true
5555
5656, # What flavour to build. An empty string indicates no
282282 "fp_cv_prog_ar_supports_dash_l=no"
283283 ] ++ lib . optionals ( targetPlatform . isDarwin ) [
284284 "--without-libcharset"
285- ] ++ lib . optional ( targetPlatform . isGhcjs ) "--target=javascript-unknown-ghcjs" # TODO use configurePlatforms once tripple is updated in nixpkgs
285+ ] ++ lib . optional ( targetPlatform . isGhcjs ) "--target=javascript-unknown-ghcjs" # TODO use configurePlatforms once triple is updated in nixpkgs
286286 ;
287287
288288 # Splicer will pull out correct variations
374374
375375 hadrian = hadrianProject . hsPkgs . hadrian . components . exes . hadrian ;
376376
377- # For a discription of hadrian command line args
377+ # For a description of hadrian command line args
378378 # see https://gitlab.haskell.org/ghc/ghc/blob/master/hadrian/README.md
379379 # For build flavours and flavour transformers
380380 # see https://gitlab.haskell.org/ghc/ghc/blob/master/hadrian/doc/flavours.md
@@ -927,7 +927,7 @@ haskell-nix.haskellLib.makeCompilerDeps (stdenv.mkDerivation (rec {
927927 export XATTR=$(mktemp -d)/nothing
928928 ''
929929 # We need to point at a stand in `windows.h` header file so that the RTS headers can
930- # work on the hostPlatform. We also need to work around case sensitve file system issues.
930+ # work on the hostPlatform. We also need to work around case sensitive file system issues.
931931 + lib . optionalString stdenv . targetPlatform . isWindows ''
932932 export NIX_CFLAGS_COMPILE_${
933933 # We want this only to apply to the non windows hostPlatform (the
0 commit comments