eec6d815c9
ocamlPackages.atdgen-codec-runtime: 2.16.0 → 3.0.1
20 lines
267 B
Nix
20 lines
267 B
Nix
{
|
|
buildDunePackage,
|
|
eio,
|
|
linol,
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "linol-eio";
|
|
inherit (linol) version src;
|
|
|
|
propagatedBuildInputs = [
|
|
eio
|
|
linol
|
|
];
|
|
|
|
meta = linol.meta // {
|
|
description = "LSP server library (with Eio for concurrency)";
|
|
};
|
|
}
|