nixpkgs/pkgs/development/tools/ocaml/merlin/default.nix

23 lines
606 B
Nix
Raw Normal View History

2019-12-03 18:18:33 +01:00
{ lib, fetchurl, buildDunePackage, yojson }:
buildDunePackage rec {
pname = "merlin";
version = "3.3.9";
2019-05-31 12:30:00 +02:00
minimumOCamlVersion = "4.02.1";
2019-12-03 18:18:33 +01:00
src = fetchurl {
url = "https://github.com/ocaml/merlin/releases/download/v${version}/merlin-v${version}.tbz";
sha256 = "00ng8299l5rzpak8ljxzr6dgxw6z52ivm91159ahv09xk4d0y5x3";
};
buildInputs = [ yojson ];
2019-12-03 18:18:33 +01:00
meta = with lib; {
2014-09-10 01:28:49 +02:00
description = "An editor-independent tool to ease the development of programs in OCaml";
2017-10-23 00:14:38 +02:00
homepage = "https://github.com/ocaml/merlin";
license = licenses.mit;
maintainers = [ maintainers.vbgl ];
};
}