2021-03-21 21:09:52 +00:00
|
|
|
{ lib, fetchurl, yojson, csexp, result, buildDunePackage }:
|
2020-09-23 06:13:51 +01:00
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "dot-merlin-reader";
|
2021-03-18 15:25:48 +00:00
|
|
|
version = "4.1";
|
2020-12-30 20:49:04 +00:00
|
|
|
|
|
|
|
useDune2 = true;
|
2020-09-23 06:13:51 +01:00
|
|
|
|
2021-03-18 15:25:48 +00:00
|
|
|
minimumOCamlVersion = "4.06";
|
2020-09-23 06:13:51 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-03-18 15:25:48 +00:00
|
|
|
url = "https://github.com/ocaml/merlin/releases/download/v${version}/dot-merlin-reader-v${version}.tbz";
|
|
|
|
sha256 = "14a36d6fb8646a5df4530420a7861722f1a4ee04753717947305e3676031e7cd";
|
2020-09-23 06:13:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ yojson csexp result ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Reads config files for merlin";
|
|
|
|
homepage = "https://github.com/ocaml/merlin";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.hongchangwu ];
|
|
|
|
};
|
|
|
|
}
|