ocamlPackages.mirage-flow: init at 2.0.1
This commit is contained in:
parent
10a73b84d3
commit
81fa88504b
24
pkgs/development/ocaml-modules/mirage-flow/default.nix
Normal file
24
pkgs/development/ocaml-modules/mirage-flow/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
|
@ -538,6 +538,8 @@ let
|
|||||||
|
|
||||||
mirage-device = callPackage ../development/ocaml-modules/mirage-device { };
|
mirage-device = callPackage ../development/ocaml-modules/mirage-device { };
|
||||||
|
|
||||||
|
mirage-flow = callPackage ../development/ocaml-modules/mirage-flow { };
|
||||||
|
|
||||||
mlgmp = callPackage ../development/ocaml-modules/mlgmp { };
|
mlgmp = callPackage ../development/ocaml-modules/mlgmp { };
|
||||||
|
|
||||||
mlgmpidl = callPackage ../development/ocaml-modules/mlgmpidl { };
|
mlgmpidl = callPackage ../development/ocaml-modules/mlgmpidl { };
|
||||||
|
Loading…
Reference in New Issue
Block a user