ocamlPackages.merlin: 3.4.0 → 3.4.2

This commit is contained in:
Vincent Laporte 2020-12-30 21:49:04 +01:00 committed by Vincent Laporte
parent b09a961ddf
commit d9c71767bd
2 changed files with 5 additions and 3 deletions

View file

@ -4,7 +4,7 @@
buildDunePackage rec {
pname = "merlin";
inherit (dot-merlin-reader) src version;
inherit (dot-merlin-reader) src version useDune2;
minimumOCamlVersion = "4.02.3";

View file

@ -4,13 +4,15 @@ with ocamlPackages;
buildDunePackage rec {
pname = "dot-merlin-reader";
version = "3.4.0";
version = "3.4.2";
useDune2 = true;
minimumOCamlVersion = "4.02.1";
src = fetchurl {
url = "https://github.com/ocaml/merlin/releases/download/v${version}/merlin-v${version}.tbz";
sha256 = "048rkpbvayksv8mgmkgi17vv0y9xplv7v2ww4d1hs7bkm5zzsvg2";
sha256 = "109ai1ggnkrwbzsl1wdalikvs1zx940m6n65jllxj68in6bvidz1";
};
buildInputs = [ yojson csexp result ];