mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
14 lines
393 B
Nix
14 lines
393 B
Nix
{ buildDunePackage, mirage-flow, fmt, ocaml_lwt, logs, cstruct, mirage-clock }:
|
|
|
|
buildDunePackage {
|
|
pname = "mirage-flow-combinators";
|
|
|
|
inherit (mirage-flow) version useDune2 src;
|
|
|
|
propagatedBuildInputs = [ ocaml_lwt logs cstruct mirage-clock mirage-flow ];
|
|
|
|
meta = mirage-flow.meta // {
|
|
description = "Flow implementations and combinators for MirageOS specialized to lwt";
|
|
};
|
|
}
|