haskell.packages.ghc921.tf-random: work around aarch64 decoding bug
GHC 9.2.1 seemingly has trouble decoding the UTF-8 in tf-random's haddock comments and cabal file, causing haddock and the build to fail. Until there's a patch from upstream we can apply, we'll just disable haddock.
This commit is contained in:
parent
a50888dc73
commit
e469110847
1 changed files with 5 additions and 0 deletions
|
@ -43,6 +43,11 @@ self: super: {
|
|||
unix = null;
|
||||
xhtml = null;
|
||||
|
||||
# Workaround for https://gitlab.haskell.org/ghc/ghc/-/issues/20594
|
||||
tf-random = overrideCabal super.tf-random {
|
||||
doHaddock = !pkgs.stdenv.isAarch64;
|
||||
};
|
||||
|
||||
aeson = appendPatch (doJailbreak super.aeson) (pkgs.fetchpatch {
|
||||
url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/dfd024c9a336c752288ec35879017a43bd7e85a0/patches/aeson-1.5.6.0.patch";
|
||||
sha256 = "07rk7f0lhgilxvbg2grpl1p5x25wjf9m7a0wqmi2jr0q61p9a0nl";
|
||||
|
|
Loading…
Reference in a new issue