about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-08-21 19:50:48 +0200
committerVincent Laporte <vbgl@users.noreply.github.com>2021-08-31 21:15:10 +0200
commit7b63df2fdeb0e14ed77b41be11cbf1e390cea15f (patch)
tree1315d73345f05bb1f6f26b7d84e1474532c009dc /pkgs/development/ocaml-modules
parent97d2411bf37311d85afeb8de43f72ed8cd254a34 (diff)
downloadnixlib-7b63df2fdeb0e14ed77b41be11cbf1e390cea15f.tar
nixlib-7b63df2fdeb0e14ed77b41be11cbf1e390cea15f.tar.gz
nixlib-7b63df2fdeb0e14ed77b41be11cbf1e390cea15f.tar.bz2
nixlib-7b63df2fdeb0e14ed77b41be11cbf1e390cea15f.tar.lz
nixlib-7b63df2fdeb0e14ed77b41be11cbf1e390cea15f.tar.xz
nixlib-7b63df2fdeb0e14ed77b41be11cbf1e390cea15f.tar.zst
nixlib-7b63df2fdeb0e14ed77b41be11cbf1e390cea15f.zip
ocaml-ng.ocamlPackages_4_08.uunf: mark as broken on aarch64
Fails to build consistently on aarch64 for unknown reasons, probably a
compiler bug as OCaml 4.12 seems to work.
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/uunf/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/uunf/default.nix b/pkgs/development/ocaml-modules/uunf/default.nix
index cb95839d16c0..898bbbba91b7 100644
--- a/pkgs/development/ocaml-modules/uunf/default.nix
+++ b/pkgs/development/ocaml-modules/uunf/default.nix
@@ -56,5 +56,8 @@ stdenv.mkDerivation {
     platforms = ocaml.meta.platforms or [];
     license = licenses.bsd3;
     maintainers = [ maintainers.vbgl ];
+    # See https://github.com/dbuenzli/uunf/issues/15#issuecomment-903151264
+    broken = lib.versions.majorMinor ocaml.version == "4.08"
+      && stdenv.hostPlatform.isAarch64;
   };
 }