repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
ocamlPackages.hxd: 0.3.2 -> 0.3.3 (#364231)
[NixPkgs.git]
/
pkgs
/
development
/
ocaml-modules
/
mirage-flow
/
combinators.nix
blob
9370117bcc10a03e10afb2bdd6316a8cfa82230f
1
{
2
buildDunePackage,
3
mirage-flow,
4
lwt,
5
logs,
6
cstruct,
7
mirage-clock,
8
}:
9
10
buildDunePackage {
11
pname = "mirage-flow-combinators";
12
13
inherit (mirage-flow) version src;
14
15
duneVersion = "3";
16
17
propagatedBuildInputs = [
18
lwt
19
logs
20
cstruct
21
mirage-clock
22
mirage-flow
23
];
24
25
meta = mirage-flow.meta // {
26
description = "Flow implementations and combinators for MirageOS specialized to lwt";
27
};
28
}