mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
16 lines
394 B
Nix
16 lines
394 B
Nix
{ buildDunePackage, mirage-flow, fmt, lwt, logs, cstruct, mirage-clock }:
|
|
|
|
buildDunePackage {
|
|
pname = "mirage-flow-combinators";
|
|
|
|
inherit (mirage-flow) version src;
|
|
|
|
duneVersion = "3";
|
|
|
|
propagatedBuildInputs = [ lwt logs cstruct mirage-clock mirage-flow ];
|
|
|
|
meta = mirage-flow.meta // {
|
|
description = "Flow implementations and combinators for MirageOS specialized to lwt";
|
|
};
|
|
}
|