haxe: build versions < 4.2 with OCaml 4.10

This commit is contained in:
Vincent Laporte
2021-04-20 05:46:16 +02:00
committed by Vincent Laporte
parent 44339cc0b0
commit ab51ade9a3
2 changed files with 19 additions and 5 deletions

View File

@@ -1,11 +1,14 @@
# Older version of extlib for Haxe 4.0 and 4.1.
# May be replaceable by the next extlib + extlib-base64 release.
{ fetchurl, ocaml_extlib }:
{ lib, fetchurl, ocaml, ocaml_extlib }:
ocaml_extlib.overrideAttrs (_: rec {
ocaml_extlib.overrideAttrs (x: rec {
version = "1.7.7";
src = fetchurl {
url = "https://github.com/ygrek/ocaml-extlib/releases/download/${version}/extlib-${version}.tar.gz";
sha256 = "1sxmzc1mx3kg62j8kbk0dxkx8mkf1rn70h542cjzrziflznap0s1";
};
meta = x.meta // {
broken = lib.versionAtLeast ocaml.version "4.12";
};
})