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

33 lines
870 B
Nix
Raw Normal View History

2017-10-22 06:48:10 +00:00
{ stdenv, fetchzip, ocaml, findlib, yojson
2015-01-29 06:45:39 +00:00
, withEmacsMode ? false, emacs }:
2017-10-22 06:48:10 +00:00
assert stdenv.lib.versionAtLeast ocaml.version "4.02";
let
2017-10-22 06:48:10 +00:00
version = "3.0.3";
in
2015-01-29 06:45:39 +00:00
stdenv.mkDerivation {
2015-01-29 06:45:39 +00:00
name = "merlin-${version}";
2015-01-29 06:45:39 +00:00
src = fetchzip {
url = "https://github.com/ocaml/merlin/archive/v${version}.tar.gz";
2017-10-22 06:48:10 +00:00
sha256 = "19gz9vcdna84xcm2b53m6b5g4c7ppb61j05fnvry3shvjiz2p58p";
};
buildInputs = [ ocaml findlib yojson ]
++ stdenv.lib.optional withEmacsMode emacs;
preConfigure = "mkdir -p $out/bin";
prefixKey = "--prefix ";
configureFlags = stdenv.lib.optional withEmacsMode "--enable-compiled-emacs-mode";
meta = with stdenv.lib; {
2014-09-09 23:28:49 +00:00
description = "An editor-independent tool to ease the development of programs in OCaml";
2017-10-22 22:14:38 +00:00
homepage = "https://github.com/ocaml/merlin";
license = licenses.mit;
maintainers = [ maintainers.vbgl ];
};
}