ocamlPackages.rio: init at 0.0.8
This commit is contained in:
parent
cb34f1987c
commit
e31484ad34
30
pkgs/development/ocaml-modules/rio/default.nix
Normal file
30
pkgs/development/ocaml-modules/rio/default.nix
Normal 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 = [ ];
|
||||
};
|
||||
}
|
||||
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user