mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 09:43:14 +00:00
20 lines
327 B
Nix
20 lines
327 B
Nix
{ lib, buildDunePackage, linol, jsonrpc, lwt, yojson }:
|
|
|
|
buildDunePackage {
|
|
pname = "linol-lwt";
|
|
inherit (linol) version src;
|
|
|
|
duneVersion = "3";
|
|
|
|
propagatedBuildInputs = [
|
|
linol
|
|
jsonrpc
|
|
lwt
|
|
yojson
|
|
];
|
|
|
|
meta = linol.meta // {
|
|
description = "LSP server library (with Lwt for concurrency)";
|
|
};
|
|
}
|