Files
Vincent Laporte eec6d815c9 ocamlPackages.yojson: 2.2.2 → 3.0.0
ocamlPackages.atdgen-codec-runtime: 2.16.0 → 3.0.1
2025-12-12 06:35:52 +01:00

20 lines
267 B
Nix

{
buildDunePackage,
linol,
lwt,
}:
buildDunePackage {
pname = "linol-lwt";
inherit (linol) version src;
propagatedBuildInputs = [
linol
lwt
];
meta = linol.meta // {
description = "LSP server library (with Lwt for concurrency)";
};
}