ocaml-ng.ocamlPackages_5_1.riot: init at 0.0.2

This commit is contained in:
Mario Rodas 2023-11-16 04:20:00 +00:00 committed by Vincent Laporte
parent debcb43e19
commit c757e9bd77
2 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,37 @@
{ lib
, bigstringaf
, buildDunePackage
, fetchurl
, iomux
, ptime
, uri
}:
buildDunePackage rec {
pname = "riot";
version = "0.0.2";
minimalOCamlVersion = "5.1";
src = fetchurl {
url = "https://github.com/leostera/riot/releases/download/${version}/riot-${version}.tbz";
hash = "sha256-ck/tr5o0nKF4WNgjPODHg1/tlaKv1JtuYgqYfIIZ78Q=";
};
propagatedBuildInputs = [
bigstringaf
iomux
ptime
uri
];
doCheck = true;
meta = {
description = "An actor-model multi-core scheduler for OCaml 5";
homepage = "https://github.com/leostera/riot";
changelog = "https://github.com/leostera/riot/blob/${version}/CHANGES.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ marsam ];
};
}

View file

@ -1606,6 +1606,8 @@ let
ringo = callPackage ../development/ocaml-modules/ringo { };
riot = callPackage ../development/ocaml-modules/riot { };
rock = callPackage ../development/ocaml-modules/rock { };
rope = callPackage ../development/ocaml-modules/rope { };