1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-05 20:12:52 +00:00
nixpkgs/pkgs/development/tools/ocaml/merlin/default.nix

29 lines
877 B
Nix
Raw Normal View History

{stdenv, fetchurl, ocaml, findlib, yojson, menhir
, withEmacsMode ? false, emacs}:
assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.00";
stdenv.mkDerivation {
2015-01-18 11:32:44 +00:00
name = "merlin-2.1";
src = fetchurl {
2015-01-18 11:32:44 +00:00
url = https://github.com/the-lambda-church/merlin/archive/v2.1.tar.gz;
sha256 = "0rk5ffhr69wbhr50ixgw1vnv0wkhxwh1z3cpbcwkm72cnac74nj6";
};
buildInputs = [ ocaml findlib yojson menhir ]
++ 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-10 00:28:49 +01:00
description = "An editor-independent tool to ease the development of programs in OCaml";
homepage = "http://the-lambda-church.github.io/merlin/";
license = licenses.mit;
maintainers = [ maintainers.vbgl ];
};
}