1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 21:21:06 +00:00

ocamlPackages.bigstringaf: disable tests for OCaml < 4.05

This commit is contained in:
Vincent Laporte 2020-04-16 08:59:21 +02:00 committed by Vincent Laporte
parent 529165cfac
commit 1bdf4d121b

View file

@ -1,4 +1,4 @@
{ lib, fetchFromGitHub, buildDunePackage, alcotest, bigarray-compat }:
{ lib, fetchFromGitHub, buildDunePackage, ocaml, alcotest, bigarray-compat }:
buildDunePackage rec {
pname = "bigstringaf";
@ -13,9 +13,9 @@ buildDunePackage rec {
sha256 = "04b088vrqzmxsyan9f9nr8721bxip4b930cgvb5zkbbmrw3ylmwc";
};
buildInputs = [ alcotest ];
checkInputs = [ alcotest ];
propagatedBuildInputs = [ bigarray-compat ];
doCheck = true;
doCheck = lib.versionAtLeast ocaml.version "4.05";
meta = {
description = "Bigstring intrinsics and fast blits based on memcpy/memmove";