Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
288 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
buildDunePackage,
linol,
lwt,
yojson,
}:
buildDunePackage {
pname = "linol-lwt";
inherit (linol) version src;
propagatedBuildInputs = [
linol
lwt
yojson
];
meta = linol.meta // {
description = "LSP server library (with Lwt for concurrency)";
};
}