Commit af62c860 authored by Vincent Laporte's avatar Vincent Laporte Committed by Vincent Laporte
Browse files

ocamlPackages.imagelib: 20210511 → 20221222

parent c2302588
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -3,20 +3,20 @@
}:

buildDunePackage rec {
  minimumOCamlVersion = "4.07";
  version = "20210511";
  minimalOCamlVersion = "4.08";
  version = "20221222";
  pname = "imagelib";

  useDune2 = true;
  duneVersion = "3";

  src = fetchurl {
    url = "https://github.com/rlepigre/ocaml-imagelib/releases/download/${version}/imagelib-${version}.tbz";
    sha256 = "1cb94ea3731dc994c205940c9434543ce3f2470cdcb2e93a3e02ed793e80d480";
    hash = "sha256-BQ2TVxGlpc6temteK84TKXpx0MtHZSykL/TjKN9xGP0=";
  };

  propagatedBuildInputs = [ decompress stdlib-shims ];

  doCheck = lib.versionAtLeast ocaml.version "4.08";
  doCheck = true;
  checkInputs = [ alcotest ];

  meta = {