mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
ocamlPackages.arp: disable tests on Darwin
This commit is contained in:
parent
3365aa18eb
commit
9684ea4910
1 changed files with 3 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ lib
|
||||||
|
, stdenv
|
||||||
, buildDunePackage
|
, buildDunePackage
|
||||||
, fetchurl
|
, fetchurl
|
||||||
, cstruct
|
, cstruct
|
||||||
|
@ -48,7 +49,8 @@ buildDunePackage rec {
|
||||||
mirage-time
|
mirage-time
|
||||||
];
|
];
|
||||||
|
|
||||||
doCheck = true;
|
## NOTE: As of 18 april 2023 and ARP version 3.0.0, tests fail on Darwin.
|
||||||
|
doCheck = ! stdenv.isDarwin;
|
||||||
checkInputs = [
|
checkInputs = [
|
||||||
alcotest
|
alcotest
|
||||||
mirage-clock-unix
|
mirage-clock-unix
|
||||||
|
|
Loading…
Reference in a new issue