Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
647 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
yojson,
csexp,
findlib,
buildDunePackage,
merlin-lib,
merlin,
result,
}:
buildDunePackage rec {
pname = "dot-merlin-reader";
inherit (merlin) version src;
minimalOCamlVersion = "4.06";
buildInputs = [
findlib
]
++ (
if lib.versionAtLeast version "4.7-414" then
[ merlin-lib ]
else
[
yojson
csexp
result
]
);
meta = with lib; {
description = "Reads config files for merlin";
mainProgram = "dot-merlin-reader";
homepage = "https://github.com/ocaml/merlin";
license = licenses.mit;
maintainers = [ maintainers.hongchangwu ];
};
}