2018-10-08 09:34:46 -07:00
|
|
|
{ stdenv, fetchzip, ocaml, findlib, dune, yojson }:
|
2014-09-21 03:02:55 -07:00
|
|
|
|
2017-10-21 23:48:10 -07:00
|
|
|
assert stdenv.lib.versionAtLeast ocaml.version "4.02";
|
2014-09-21 03:02:55 -07:00
|
|
|
|
2016-07-20 05:53:33 -07:00
|
|
|
let
|
2018-10-27 06:24:22 -07:00
|
|
|
version = "3.2.2";
|
2016-07-20 05:53:33 -07:00
|
|
|
in
|
2015-01-28 22:45:39 -08:00
|
|
|
|
2014-07-05 08:29:21 -07:00
|
|
|
stdenv.mkDerivation {
|
|
|
|
|
2015-01-28 22:45:39 -08:00
|
|
|
name = "merlin-${version}";
|
2014-07-05 08:29:21 -07:00
|
|
|
|
2015-01-28 22:45:39 -08:00
|
|
|
src = fetchzip {
|
2017-09-21 11:39:36 -07:00
|
|
|
url = "https://github.com/ocaml/merlin/archive/v${version}.tar.gz";
|
2018-10-27 06:24:22 -07:00
|
|
|
sha256 = "15ssgmwdxylbwhld9p1cq8x6kadxyhll5bfyf11dddj6cldna3hb";
|
2014-07-05 08:29:21 -07:00
|
|
|
};
|
|
|
|
|
2018-10-08 09:34:46 -07:00
|
|
|
buildInputs = [ ocaml findlib dune yojson ];
|
2014-07-05 08:29:21 -07:00
|
|
|
|
2018-10-08 09:34:46 -07:00
|
|
|
inherit (dune) installPhase;
|
2014-07-05 08:29:21 -07:00
|
|
|
|
2014-09-21 03:02:55 -07:00
|
|
|
meta = with stdenv.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
|
|
|
};
|
|
|
|
}
|