mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-31 20:54:56 +00:00
27 lines
402 B
Nix
27 lines
402 B
Nix
{
|
|
buildDunePackage,
|
|
mirage-flow,
|
|
lwt,
|
|
logs,
|
|
cstruct,
|
|
mirage-mtime,
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "mirage-flow-combinators";
|
|
|
|
inherit (mirage-flow) version src;
|
|
|
|
propagatedBuildInputs = [
|
|
lwt
|
|
logs
|
|
cstruct
|
|
mirage-mtime
|
|
mirage-flow
|
|
];
|
|
|
|
meta = mirage-flow.meta // {
|
|
description = "Flow implementations and combinators for MirageOS specialized to lwt";
|
|
};
|
|
}
|