Merge pull request #304419 from marsam/add-ocaml-miou

ocamlPackages.miou: init at 0.1.0
This commit is contained in:
Ulrik Strid 2024-04-16 07:54:27 +02:00 committed by GitHub
commit 1e4080d9be
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ lib, buildDunePackage, fetchurl }:
buildDunePackage rec {
pname = "miou";
version = "0.1.0";
minimalOCamlVersion = "5.0.0";
src = fetchurl {
url = "https://github.com/robur-coop/miou/releases/download/v${version}/miou-${version}.tbz";
hash = "sha256-WTs6L9j4z1/0wKcGIZVwaNrATRGCTN5A6RwO7tY2phE=";
};
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";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ marsam ];
};
}

View File

@ -1084,6 +1084,8 @@ let
minttea = callPackage ../development/ocaml-modules/minttea { };
miou = callPackage ../development/ocaml-modules/miou { };
mirage = callPackage ../development/ocaml-modules/mirage { };
mirage-block = callPackage ../development/ocaml-modules/mirage-block { };