From 98d231d9cad3993470e30dc01169bdc2a254537e Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Thu, 2 Apr 2026 06:41:16 +0200 Subject: [PATCH] =?UTF-8?q?ocamlPackages.miou:=200.4.0=20=E2=86=92=200.5.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/development/ocaml-modules/miou/default.nix | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/pkgs/development/ocaml-modules/miou/default.nix b/pkgs/development/ocaml-modules/miou/default.nix index d02f4fd795c4..bc0423ab20d1 100644 --- a/pkgs/development/ocaml-modules/miou/default.nix +++ b/pkgs/development/ocaml-modules/miou/default.nix @@ -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 = [ ]; }; -} +})