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

22 lines
576 B
Nix
Raw Normal View History

2014-08-19 16:42:13 +00:00
{stdenv, fetchurl, ocaml, findlib, yojson, menhir}:
stdenv.mkDerivation {
2014-08-22 12:56:33 +00:00
name = "merlin-1.7.1";
src = fetchurl {
2014-08-22 12:56:33 +00:00
url = https://github.com/the-lambda-church/merlin/archive/v1.7.1.tar.gz;
sha256 = "c3b60c7b3fddaa2860e0d8ac0d4fed2ed60e319875734c7ac1a93df524c67aff";
};
2014-08-19 16:42:13 +00:00
buildInputs = [ ocaml findlib yojson menhir ];
prefixKey = "--prefix ";
meta = {
description = "An editor-independant tool to ease the developpement of programs in OCaml";
homepage = "http://the-lambda-church.github.io/merlin/";
license = stdenv.lib.licenses.mit;
};
}