1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-22 14:47:06 +00:00
nixpkgs/pkgs/development/tools/ocaml/merlin/default.nix

23 lines
606 B
Nix
Raw Normal View History

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