ocamlPackages.mirage-flow: init at 2.0.1

This commit is contained in:
Vincent Laporte 2020-04-08 08:27:58 +02:00 committed by Vincent Laporte
parent 10a73b84d3
commit 81fa88504b
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib, buildDunePackage, fetchurl, cstruct, fmt, ocaml_lwt }:
buildDunePackage rec {
pname = "mirage-flow";
version = "2.0.1";
minimumOCamlVersion = "4.05";
src = fetchurl {
url = "https://github.com/mirage/mirage-flow/releases/download/v${version}/mirage-flow-v${version}.tbz";
sha256 = "13v05x34six0z6bc2is8qhvbxk4knxh80ardi5x4rl738vlq3mn9";
};
propagatedBuildInputs = [ cstruct fmt ocaml_lwt ];
meta = {
description = "Flow implementations and combinators for MirageOS";
homepage = "https://github.com/mirage/mirage-flow";
license = lib.licenses.isc;
maintainers = [ lib.maintainers.vbgl ];
};
}

View file

@ -538,6 +538,8 @@ let
mirage-device = callPackage ../development/ocaml-modules/mirage-device { };
mirage-flow = callPackage ../development/ocaml-modules/mirage-flow { };
mlgmp = callPackage ../development/ocaml-modules/mlgmp { };
mlgmpidl = callPackage ../development/ocaml-modules/mlgmpidl { };