evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / ocaml-modules / rio / default.nix
blob853670be35288b32463196a7ff4f33a83c2ca395
1 { lib
2 , buildDunePackage
3 , fetchurl
4 , cstruct
5 }:
7 buildDunePackage rec {
8   pname = "rio";
9   version = "0.0.8";
11   minimalOCamlVersion = "5.1";
13   src = fetchurl {
14     url = "https://github.com/riot-ml/riot/releases/download/${version}/riot-${version}.tbz";
15     hash = "sha256-SsiDz53b9bMIT9Q3IwDdB3WKy98WSd9fiieU41qZpeE=";
16   };
18   propagatedBuildInputs = [
19     cstruct
20   ];
22   meta = {
23     description = "Ergonomic, composable, efficient read/write streams";
24     homepage = "https://github.com/riot-ml/riot";
25     changelog = "https://github.com/riot-ml/riot/blob/${version}/CHANGES.md";
26     license = lib.licenses.mit;
27     maintainers = [ ];
28   };