Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildDunePackage, linol, jsonrpc, lwt, yojson }:
2
3buildDunePackage {
4 pname = "linol-lwt";
5 inherit (linol) version src;
6
7 duneVersion = "3";
8
9 propagatedBuildInputs = [
10 linol
11 jsonrpc
12 lwt
13 yojson
14 ];
15
16 meta = linol.meta // {
17 description = "LSP server library (with Lwt for concurrency)";
18 };
19}