Commit e31484ad authored by Vincent Laporte's avatar Vincent Laporte Committed by Vincent Laporte
Browse files

ocamlPackages.rio: init at 0.0.8

parent cb34f198
Loading
Loading
Loading
Loading
+30 −0
Original line number Diff line number Diff line
{ 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 = [ ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };