mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 17:23:08 +00:00
24 lines
567 B
Nix
24 lines
567 B
Nix
{ lib, fetchurl, yojson, csexp, findlib, buildDunePackage, merlin-lib, merlin, result }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "dot-merlin-reader";
|
|
|
|
duneVersion = "3";
|
|
|
|
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";
|
|
homepage = "https://github.com/ocaml/merlin";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.hongchangwu ];
|
|
};
|
|
}
|