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

29 lines
684 B
Nix
Raw Normal View History

2018-10-08 18:34:46 +02:00
{ stdenv, fetchzip, ocaml, findlib, dune, yojson }:
2017-10-22 08:48:10 +02:00
assert stdenv.lib.versionAtLeast ocaml.version "4.02";
let
version = "3.2.2";
in
2015-01-29 07:45:39 +01:00
stdenv.mkDerivation {
2015-01-29 07:45:39 +01:00
name = "merlin-${version}";
2015-01-29 07:45:39 +01:00
src = fetchzip {
url = "https://github.com/ocaml/merlin/archive/v${version}.tar.gz";
sha256 = "15ssgmwdxylbwhld9p1cq8x6kadxyhll5bfyf11dddj6cldna3hb";
};
2018-10-08 18:34:46 +02:00
buildInputs = [ ocaml findlib dune yojson ];
2018-10-08 18:34:46 +02:00
inherit (dune) installPhase;
meta = with stdenv.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 ];
};
}