2018-10-08 18:34:46 +02:00
|
|
|
{ stdenv, fetchzip, ocaml, findlib, dune, yojson }:
|
2014-09-21 12:02:55 +02:00
|
|
|
|
2017-10-22 08:48:10 +02:00
|
|
|
assert stdenv.lib.versionAtLeast ocaml.version "4.02";
|
2014-09-21 12:02:55 +02:00
|
|
|
|
2016-07-20 14:53:33 +02:00
|
|
|
let
|
2018-10-27 15:24:22 +02:00
|
|
|
version = "3.2.2";
|
2016-07-20 14:53:33 +02:00
|
|
|
in
|
2015-01-29 07:45:39 +01:00
|
|
|
|
2014-07-05 17:29:21 +02:00
|
|
|
stdenv.mkDerivation {
|
|
|
|
|
2015-01-29 07:45:39 +01:00
|
|
|
name = "merlin-${version}";
|
2014-07-05 17:29:21 +02:00
|
|
|
|
2015-01-29 07:45:39 +01:00
|
|
|
src = fetchzip {
|
2017-09-21 20:39:36 +02:00
|
|
|
url = "https://github.com/ocaml/merlin/archive/v${version}.tar.gz";
|
2018-10-27 15:24:22 +02:00
|
|
|
sha256 = "15ssgmwdxylbwhld9p1cq8x6kadxyhll5bfyf11dddj6cldna3hb";
|
2014-07-05 17:29:21 +02:00
|
|
|
};
|
|
|
|
|
2018-10-08 18:34:46 +02:00
|
|
|
buildInputs = [ ocaml findlib dune yojson ];
|
2014-07-05 17:29:21 +02:00
|
|
|
|
2018-10-08 18:34:46 +02:00
|
|
|
inherit (dune) installPhase;
|
2014-07-05 17:29:21 +02:00
|
|
|
|
2014-09-21 12:02:55 +02:00
|
|
|
meta = with stdenv.lib; {
|
2014-09-10 01:28:49 +02:00
|
|
|
description = "An editor-independent tool to ease the development of programs in OCaml";
|
2017-10-23 00:14:38 +02:00
|
|
|
homepage = "https://github.com/ocaml/merlin";
|
2014-09-21 12:02:55 +02:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.vbgl ];
|
2014-07-05 17:29:21 +02:00
|
|
|
};
|
|
|
|
}
|