repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git]
/
pkgs
/
development
/
ocaml-modules
/
linol
/
lwt.nix
blob
b40c3771b6c8dee93bfb088d708d2634f3309e95
1
{ lib, buildDunePackage, linol, jsonrpc, lwt, yojson }:
2
3
buildDunePackage {
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
}