ocamlPackages.camlimages: fix build with OCaml ≥ 5.0

This commit is contained in:
Vincent Laporte
2023-11-06 00:18:25 +01:00
committed by Vincent Laporte
parent af801efe5d
commit 89de0d84ce
@@ -6,8 +6,6 @@ buildDunePackage rec {
pname = "camlimages";
version = "5.0.4";
duneVersion = "3";
minimalOCamlVersion = "4.07";
src = fetchFromGitLab {
@@ -17,6 +15,10 @@ buildDunePackage rec {
sha256 = "1m2c76ghisg73dikz2ifdkrbkgiwa0hcmp21f2fm2rkbf02rq3f4";
};
postPatch = ''
substituteInPlace core/{images,units}.ml --replace String.lowercase String.lowercase_ascii
'';
nativeBuildInputs = [ cppo ];
buildInputs = [ dune-configurator findlib graphics lablgtk stdio ];