mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
haskellPackages.ad: fix build on aarch64
untested
This commit is contained in:
parent
f5a9654af4
commit
f5865286fd
1 changed files with 6 additions and 0 deletions
|
@ -1840,4 +1840,10 @@ self: super: {
|
||||||
'' + (drv.postPatch or "");
|
'' + (drv.postPatch or "");
|
||||||
});
|
});
|
||||||
|
|
||||||
|
# GHCi issue on aarch64 prevent doctests from running
|
||||||
|
# https://gitlab.haskell.org/ghc/ghc/-/issues/15275#note_295437
|
||||||
|
ad = overrideCabal super.ad {
|
||||||
|
doCheck = !pkgs.stdenv.hostPlatform.isAarch64;
|
||||||
|
};
|
||||||
|
|
||||||
} // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super
|
} // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super
|
||||||
|
|
Loading…
Reference in a new issue