Unverified Commit 4afb0ec0 authored by Vincent Laporte's avatar Vincent Laporte Committed by GitHub
Browse files

ocamlPackages.miou: 0.4.0 → 0.5.5 (#505903)

parents e5b9fe3d 98d231d9
Loading
Loading
Loading
Loading
+9 −6
Original line number Diff line number Diff line
@@ -2,24 +2,27 @@
  lib,
  buildDunePackage,
  fetchurl,
  dune-configurator,
}:

buildDunePackage rec {
buildDunePackage (finalAttrs: {
  pname = "miou";
  version = "0.4.0";
  version = "0.5.5";

  minimalOCamlVersion = "5.0.0";

  src = fetchurl {
    url = "https://github.com/robur-coop/miou/releases/download/v${version}/miou-${version}.tbz";
    hash = "sha256-2a5SET2SPyQloTdcWU9KzPYRcXgK8e8hHbu6OP9R2s8=";
    url = "https://github.com/robur-coop/miou/releases/download/v${finalAttrs.version}/miou-${finalAttrs.version}.tbz";
    hash = "sha256-YJZ/nlqpxW77mhcamtCMx5d6/f9MVVBv1QCOz55EyuA=";
  };

  buildInputs = [ dune-configurator ];

  meta = {
    description = "Composable concurrency primitives for OCaml";
    homepage = "https://git.robur.coop/robur/miou";
    changelog = "https://git.robur.coop/robur/miou/src/tag/v${version}/CHANGES.md";
    changelog = "https://git.robur.coop/robur/miou/src/tag/v${finalAttrs.version}/CHANGES.md";
    license = lib.licenses.mit;
    maintainers = [ ];
  };
}
})