tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
ocamlPackages.batteries: disable tests on Aarch64
Vincent Laporte
7 years ago
1003e6e0
65fcac82
+1
-1
1 changed file
expand all
collapse all
unified
split
pkgs
development
ocaml-modules
batteries
default.nix
+1
-1
pkgs/development/ocaml-modules/batteries/default.nix
···
13
13
buildInputs = [ ocaml findlib ocamlbuild qtest ];
14
14
propagatedBuildInputs = [ num ];
15
15
16
16
-
doCheck = !stdenv.lib.versionAtLeast ocaml.version "4.07";
16
16
+
doCheck = !stdenv.lib.versionAtLeast ocaml.version "4.07" && !stdenv.isAarch64;
17
17
checkTarget = "test test";
18
18
19
19
createFindlibDestdir = true;