ocamlPackages.rio: init at 0.0.8

This commit is contained in:
Vincent Laporte 2024-05-22 07:20:35 +02:00 committed by Vincent Laporte
parent cb34f1987c
commit e31484ad34
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{ lib
, buildDunePackage
, fetchurl
, cstruct
}:
buildDunePackage rec {
pname = "rio";
version = "0.0.8";
minimalOCamlVersion = "5.1";
src = fetchurl {
url = "https://github.com/riot-ml/riot/releases/download/${version}/riot-${version}.tbz";
hash = "sha256-SsiDz53b9bMIT9Q3IwDdB3WKy98WSd9fiieU41qZpeE=";
};
propagatedBuildInputs = [
cstruct
];
meta = {
description = "Ergonomic, composable, efficient read/write streams";
homepage = "https://github.com/riot-ml/riot";
changelog = "https://github.com/riot-ml/riot/blob/${version}/CHANGES.md";
license = lib.licenses.mit;
maintainers = [ ];
};
}

View File

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