mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
ocamlPackages.cairo2: disable tests for OCaml ≥ 4.10
This commit is contained in:
parent
571212eb83
commit
7b39d85fc7
@ -1,4 +1,4 @@
|
||||
{ stdenv, lib, fetchurl, buildDunePackage
|
||||
{ stdenv, lib, fetchurl, buildDunePackage, ocaml
|
||||
, pkgconfig, cairo
|
||||
}:
|
||||
|
||||
@ -14,7 +14,9 @@ buildDunePackage rec {
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ cairo ];
|
||||
|
||||
doCheck = !stdenv.isDarwin;
|
||||
doCheck = !(stdenv.isDarwin
|
||||
# https://github.com/Chris00/ocaml-cairo/issues/19
|
||||
|| lib.versionAtLeast ocaml.version "4.10");
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/Chris00/ocaml-cairo";
|
||||
|
Loading…
Reference in New Issue
Block a user