biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / ocaml / merlin / dot-merlin-reader.nix
blob2d572364005a77416cdc41990907478bd57473bc
1 { lib, fetchurl, yojson, csexp, findlib, buildDunePackage, merlin-lib, merlin, result }:
3 buildDunePackage rec {
4   pname = "dot-merlin-reader";
6   duneVersion = "3";
8   inherit (merlin) version src;
10   minimalOCamlVersion = "4.06";
12   buildInputs = [ findlib ]
13   ++ (if lib.versionAtLeast version "4.7-414"
14   then [ merlin-lib ]
15   else [ yojson csexp result ]);
17   meta = with lib; {
18     description = "Reads config files for merlin";
19     mainProgram = "dot-merlin-reader";
20     homepage = "https://github.com/ocaml/merlin";
21     license = licenses.mit;
22     maintainers = [ maintainers.hongchangwu ];
23   };