merlin: 2.5.3 -> 2.5.4

- Update to version 2.5.4.
- Remove dependency on menhir, which seems not needed.
This commit is contained in:
romildo 2017-05-28 23:06:55 -03:00 committed by vbgl
parent f6ef5614a0
commit 1c6abe0230

View File

@ -1,4 +1,4 @@
{ stdenv, fetchzip, ocaml, findlib, yojson, menhir, lib
{ stdenv, fetchzip, ocaml, findlib, yojson, lib
, withEmacsMode ? false, emacs }:
assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.00";
@ -8,10 +8,10 @@ let
then
"2.3.1"
else
"2.5.3";
"2.5.4";
hashes = {
"2.3.1" = "192jamcc7rmvadlqqsjkzsl6hlgwhg9my1qc89fxh1lmd4qdsrpn";
"2.5.3" = "0qljklgcrpqdxzvcqj7b4785zcz322pjvw9cddbmzla33hagglha";
"2.5.4" = "101vk16c5wayd51s8w0mvy99bk7q3gm2gz8i8616wa1lmyszjknh";
};
in
@ -24,7 +24,7 @@ stdenv.mkDerivation {
sha256 = hashes."${version}";
};
buildInputs = [ ocaml findlib yojson menhir ]
buildInputs = [ ocaml findlib yojson ]
++ stdenv.lib.optional withEmacsMode emacs;
preConfigure = "mkdir -p $out/bin";