haskell.packages.ghc942.cabal2nix: mark as broken on aarch64-linux

main
Dennis Gosnell 2 years ago
parent 0f955bb63c
commit 88c678cae8
No known key found for this signature in database
GPG Key ID: 462E0C03D11422F4
  1. 7
      pkgs/development/haskell-modules/configuration-ghc-9.4.x.nix

@ -74,7 +74,12 @@ in {
# removed after https://github.com/NixOS/cabal2nix/pull/571 is merged.
# TODO(@sternenseemann): merge and release a fixed version
distribution-nixpkgs = dontCheck super.distribution-nixpkgs;
cabal2nix = dontCheck super.cabal2nix;
cabal2nix =
# cabal2nix depends on foundation, which is broken on aarch64-linux.
# https://github.com/haskell-foundation/foundation/issues/571
overrideCabal
(drv: { badPlatforms = [ "aarch64-linux" ]; })
(dontCheck super.cabal2nix);
cabal2nix-unstable = dontCheck super.cabal2nix-unstable;
# build fails on due to ghc api changes

Loading…
Cancel
Save