2014-11-03 13:29:13 +00:00
|
|
|
{stdenv, fetchurl, ocaml, findlib, yojson, menhir
|
|
|
|
, withEmacsMode ? false, emacs}:
|
2014-09-21 11:02:55 +01:00
|
|
|
|
|
|
|
assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.00";
|
|
|
|
|
2014-07-05 16:29:21 +01:00
|
|
|
stdenv.mkDerivation {
|
|
|
|
|
2015-01-18 11:32:44 +00:00
|
|
|
name = "merlin-2.1";
|
2014-07-05 16:29:21 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-01-18 11:32:44 +00:00
|
|
|
url = https://github.com/the-lambda-church/merlin/archive/v2.1.tar.gz;
|
|
|
|
sha256 = "0rk5ffhr69wbhr50ixgw1vnv0wkhxwh1z3cpbcwkm72cnac74nj6";
|
2014-07-05 16:29:21 +01:00
|
|
|
};
|
|
|
|
|
2014-11-03 13:29:13 +00:00
|
|
|
buildInputs = [ ocaml findlib yojson menhir ]
|
|
|
|
++ stdenv.lib.optional withEmacsMode emacs;
|
2014-07-05 16:29:21 +01:00
|
|
|
|
2014-11-03 13:29:13 +00:00
|
|
|
preConfigure = "mkdir -p $out/bin";
|
2014-07-05 16:29:21 +01:00
|
|
|
prefixKey = "--prefix ";
|
2014-11-03 13:29:13 +00:00
|
|
|
configureFlags = stdenv.lib.optional withEmacsMode "--enable-compiled-emacs-mode";
|
2014-07-05 16:29:21 +01:00
|
|
|
|
2014-09-21 11:02:55 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-09-10 00:28:49 +01:00
|
|
|
description = "An editor-independent tool to ease the development of programs in OCaml";
|
2014-08-01 08:42:37 +01:00
|
|
|
homepage = "http://the-lambda-church.github.io/merlin/";
|
2014-09-21 11:02:55 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.vbgl ];
|
2014-07-05 16:29:21 +01:00
|
|
|
};
|
|
|
|
}
|