biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / ocaml / merlin / default.nix
blobcff881d1c97e5ad26d09b9688267b5ae8d83baf1
1 { lib, fetchurl, buildDunePackage, substituteAll
2 , dot-merlin-reader, dune_2, yojson, csexp, result, menhirSdk }:
4 buildDunePackage rec {
5   pname = "merlin";
6   version = "3.8.0";
8   src = fetchurl {
9     url = "https://github.com/ocaml/merlin/releases/download/v${version}/merlin-${version}.tbz";
10     sha256 = "sha256-wmBGNwXL3BduF4o1sUXtAOUHJ4xmMvsWAxl/QdNj/28=";
11   };
13   minimalOCamlVersion = "4.02.3";
15   patches = [
16     (substituteAll {
17       src = ./fix-paths.patch;
18       dot_merlin_reader = "${dot-merlin-reader}/bin/dot-merlin-reader";
19       dune = "${dune_2}/bin/dune";
20     })
21   ];
23   strictDeps = true;
25   buildInputs = [ dot-merlin-reader yojson csexp result menhirSdk ];
27   meta = with lib; {
28     description = "An editor-independent tool to ease the development of programs in OCaml";
29     homepage = "https://github.com/ocaml/merlin";
30     license = licenses.mit;
31     maintainers = [ maintainers.vbgl ];
32   };