2019-12-03 17:18:33 +00:00
|
|
|
{ lib, fetchurl, buildDunePackage, yojson }:
|
2014-09-21 11:02:55 +01:00
|
|
|
|
2018-11-05 10:21:46 +00:00
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "merlin";
|
2020-04-15 07:23:39 +01:00
|
|
|
version = "3.3.4";
|
2014-07-05 16:29:21 +01:00
|
|
|
|
2019-05-31 11:30:00 +01:00
|
|
|
minimumOCamlVersion = "4.02.1";
|
2014-07-05 16:29:21 +01:00
|
|
|
|
2019-12-03 17:18:33 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/ocaml/merlin/releases/download/v${version}/merlin-v${version}.tbz";
|
2020-04-15 07:23:39 +01:00
|
|
|
sha256 = "12wxric6n3rmsn0w16xm8vjd8p5aw24cj76zw2x87qfwwgmy1kdd";
|
2014-07-05 16:29:21 +01:00
|
|
|
};
|
|
|
|
|
2018-11-05 10:21:46 +00:00
|
|
|
buildInputs = [ yojson ];
|
2014-07-05 16:29:21 +01:00
|
|
|
|
2019-12-03 17:18:33 +00:00
|
|
|
meta = with lib; {
|
2014-09-10 00:28:49 +01:00
|
|
|
description = "An editor-independent tool to ease the development of programs in OCaml";
|
2017-10-22 23:14:38 +01:00
|
|
|
homepage = "https://github.com/ocaml/merlin";
|
2014-09-21 11:02:55 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.vbgl ];
|
2014-07-05 16:29:21 +01:00
|
|
|
};
|
|
|
|
}
|