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