mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
33 lines
354 B
Nix
33 lines
354 B
Nix
{
|
|
lib,
|
|
buildDunePackage,
|
|
dune-configurator,
|
|
eio,
|
|
fmt,
|
|
logs,
|
|
uring,
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "eio_linux";
|
|
inherit (eio)
|
|
meta
|
|
src
|
|
patches
|
|
version
|
|
;
|
|
|
|
minimalOCamlVersion = "5.2";
|
|
|
|
dontStrip = true;
|
|
|
|
buildInputs = [ dune-configurator ];
|
|
|
|
propagatedBuildInputs = [
|
|
eio
|
|
fmt
|
|
logs
|
|
uring
|
|
];
|
|
}
|