f60921aeed
But hold onto 0.12 for OCaml 5.0 https://github.com/ocaml-multicore/eio/releases/tag/v0.13
27 lines
316 B
Nix
27 lines
316 B
Nix
{ buildDunePackage
|
|
, dune-configurator
|
|
, eio
|
|
, fmt
|
|
, logs
|
|
, iomux
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "eio_posix";
|
|
inherit (eio) meta src version;
|
|
|
|
minimalOCamlVersion = "5.0";
|
|
|
|
dontStrip = true;
|
|
|
|
buildInputs = [
|
|
dune-configurator
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
eio
|
|
fmt
|
|
logs
|
|
iomux
|
|
];
|
|
}
|