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

29 lines
684 B
Nix
Raw Normal View History

2018-10-08 09:34:46 -07:00
{ stdenv, fetchzip, ocaml, findlib, dune, yojson }:
2017-10-21 23:48:10 -07:00
assert stdenv.lib.versionAtLeast ocaml.version "4.02";
let
version = "3.2.2";
in
2015-01-28 22:45:39 -08:00
stdenv.mkDerivation {
2015-01-28 22:45:39 -08:00
name = "merlin-${version}";
2015-01-28 22:45:39 -08:00
src = fetchzip {
url = "https://github.com/ocaml/merlin/archive/v${version}.tar.gz";
sha256 = "15ssgmwdxylbwhld9p1cq8x6kadxyhll5bfyf11dddj6cldna3hb";
};
2018-10-08 09:34:46 -07:00
buildInputs = [ ocaml findlib dune yojson ];
2018-10-08 09:34:46 -07:00
inherit (dune) installPhase;
meta = with stdenv.lib; {
2014-09-09 16:28:49 -07:00
description = "An editor-independent tool to ease the development of programs in OCaml";
2017-10-22 15:14:38 -07:00
homepage = "https://github.com/ocaml/merlin";
license = licenses.mit;
maintainers = [ maintainers.vbgl ];
};
}