Skip to content

Commit

Permalink
chore: fix some typos in comment (#2286)
Browse files Browse the repository at this point in the history
Signed-off-by: hongkuang <[email protected]>
  • Loading branch information
HongKuang authored Dec 3, 2024
1 parent 68c7b45 commit 94ee160
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion overlays/haskell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ final: prev: {
# urls there will allow us to know from where to fetch the packages tarballs at build
# time.
# 3. We don't want to leak the nix path of the index into the derivation of the component
# builder since this will cause unnecesary recompilation. In other words, the recipe to
# builder since this will cause unnecessary recompilation. In other words, the recipe to
# compile a package has to only depend on its content, not on where the recipe is from
# or how it is obtained.
#
Expand Down
2 changes: 1 addition & 1 deletion overlays/musl.nix
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ final: prev: prev.lib.optionalAttrs prev.stdenv.hostPlatform.isMusl ({
# See https://github.com/input-output-hk/haskell.nix/issues/948
postgresql = (prev.postgresql.overrideAttrs (_old: {
dontDisableStatic = true;
# the following is needed becuase libicu links against stdc++
# the following is needed because libicu links against stdc++
NIX_LDFLAGS = "--push-state --as-needed -lstdc++ --pop-state";
# without this collate.icu.utf8, and foreign_data will fail.
LC_CTYPE = "C";
Expand Down
2 changes: 1 addition & 1 deletion test/githash/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ let

in recurseIntoAttrs {
# githash runs git from TH code and this needs a cross compiled git exe
# to work correctly. Cross compiling git is currently brocken.
# to work correctly. Cross compiling git is currently broken.
meta.disabled = __elem compiler-nix-name ["ghc901" "ghc902"] || haskellLib.isCrossHost ||
# TODO find out why TH fails for this
(__elem compiler-nix-name ["ghc927" "ghc928"] && stdenv.hostPlatform.isAarch64 && stdenv.hostPlatform.isMusl);
Expand Down

0 comments on commit 94ee160

Please sign in to comment.