summary refs log tree commit diff
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-05-08 00:35:26 +0200
committersternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-05-08 19:55:02 +0200
commite155ff4a7fa924138f59f49ecae1f11e75cb7fb2 (patch)
treecd121fe0b8afd39900ecad9ef663861b5fb324fd
parentb71c393841998fc35d4a7281ad6885642c599c62 (diff)
downloadnixpkgs-e155ff4a7fa924138f59f49ecae1f11e75cb7fb2.tar
nixpkgs-e155ff4a7fa924138f59f49ecae1f11e75cb7fb2.tar.gz
nixpkgs-e155ff4a7fa924138f59f49ecae1f11e75cb7fb2.tar.bz2
nixpkgs-e155ff4a7fa924138f59f49ecae1f11e75cb7fb2.tar.lz
nixpkgs-e155ff4a7fa924138f59f49ecae1f11e75cb7fb2.tar.xz
nixpkgs-e155ff4a7fa924138f59f49ecae1f11e75cb7fb2.tar.zst
nixpkgs-e155ff4a7fa924138f59f49ecae1f11e75cb7fb2.zip
haskellPackages: disable more failing doctests on aarch64
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix42
1 files changed, 42 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index f6d66c960a3..8637de9495f 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -1885,6 +1885,48 @@ self: super: {
   vinyl = overrideCabal super.vinyl {
     doCheck = !pkgs.stdenv.hostPlatform.isAarch64;
   };
+  BNFC = overrideCabal super.BNFC {
+    doCheck = !pkgs.stdenv.hostPlatform.isAarch64;
+  };
+  C-structs = overrideCabal super.C-structs {
+    doCheck = !pkgs.stdenv.hostPlatform.isAarch64;
+  };
+  accelerate = overrideCabal super.accelerate {
+    doCheck = !pkgs.stdenv.hostPlatform.isAarch64;
+  };
+  focuslist = overrideCabal super.focuslist {
+    doCheck = !pkgs.stdenv.hostPlatform.isAarch64;
+  };
+  flight-kml = overrideCabal super.flight-kml {
+    doCheck = !pkgs.stdenv.hostPlatform.isAarch64;
+  };
+  exact-real = overrideCabal super.exact-real {
+    doCheck = !pkgs.stdenv.hostPlatform.isAarch64;
+  };
+  autoapply = overrideCabal super.autoapply {
+    doCheck = !pkgs.stdenv.hostPlatform.isAarch64;
+  };
+  hint = overrideCabal super.hint {
+    doCheck = !pkgs.stdenv.hostPlatform.isAarch64;
+  };
+  hgeometry = overrideCabal super.hgeometry {
+    doCheck = !pkgs.stdenv.hostPlatform.isAarch64;
+  };
+  headroom = overrideCabal super.headroom {
+    doCheck = !pkgs.stdenv.hostPlatform.isAarch64;
+  };
+  haskell-time-range = overrideCabal super.haskell-time-range {
+    doCheck = !pkgs.stdenv.hostPlatform.isAarch64;
+  };
+  hsakamai = overrideCabal super.hsakamai {
+    doCheck = !pkgs.stdenv.hostPlatform.isAarch64;
+  };
+  hsemail-ns = overrideCabal super.hsemail-ns {
+    doCheck = !pkgs.stdenv.hostPlatform.isAarch64;
+  };
+  openapi3 = overrideCabal super.openapi3 {
+    doCheck = !pkgs.stdenv.hostPlatform.isAarch64;
+  };
 
   # Tests need to lookup target triple x86_64-unknown-linux
   # https://github.com/llvm-hs/llvm-hs/issues/334