mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
45 lines
1003 B
Nix
45 lines
1003 B
Nix
{ buildDunePackage
|
|
, stdlib-shims
|
|
, ppx_yojson_conv_lib
|
|
, ocaml-syntax-shims
|
|
, yojson
|
|
, result
|
|
, fetchurl
|
|
, lib
|
|
, ocaml
|
|
}:
|
|
|
|
let params =
|
|
if lib.versionAtLeast ocaml.version "4.12"
|
|
then {
|
|
version = "1.5.0";
|
|
sha256 = "0g82m3jrp4s0m3fn9xmm8khrb3acccq8ns9p62bqa09pjd4vgdk2";
|
|
} else {
|
|
version = "1.4.1";
|
|
sha256 = "1ssyazc0yrdng98cypwa9m3nzfisdzpp7hqnx684rqj8f0g3gs6f";
|
|
}
|
|
; in
|
|
|
|
buildDunePackage rec {
|
|
pname = "jsonrpc";
|
|
inherit (params) version;
|
|
src = fetchurl {
|
|
url = "https://github.com/ocaml/ocaml-lsp/releases/download/${version}/jsonrpc-${version}.tbz";
|
|
inherit (params) sha256;
|
|
};
|
|
|
|
useDune2 = true;
|
|
minimumOCamlVersion = "4.06";
|
|
|
|
buildInputs = [ yojson stdlib-shims ocaml-syntax-shims ];
|
|
|
|
propagatedBuildInputs = [ ppx_yojson_conv_lib result ];
|
|
|
|
meta = with lib; {
|
|
description = "Jsonrpc protocol implementation in OCaml";
|
|
license = licenses.isc;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ symphorien marsam ];
|
|
};
|
|
}
|