Commit c757e9bd authored by Mario Rodas's avatar Mario Rodas Committed by Vincent Laporte
Browse files

ocaml-ng.ocamlPackages_5_1.riot: init at 0.0.2

parent debcb43e
Loading
Loading
Loading
Loading
+37 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };