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

25 lines
692 B
Nix
Raw Normal View History

2014-08-19 17:42:13 +01:00
{stdenv, fetchurl, ocaml, findlib, yojson, menhir}:
assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.00";
stdenv.mkDerivation {
2014-08-22 13:56:33 +01:00
name = "merlin-1.7.1";
src = fetchurl {
2014-08-22 13:56:33 +01:00
url = https://github.com/the-lambda-church/merlin/archive/v1.7.1.tar.gz;
sha256 = "c3b60c7b3fddaa2860e0d8ac0d4fed2ed60e319875734c7ac1a93df524c67aff";
};
2014-08-19 17:42:13 +01:00
buildInputs = [ ocaml findlib yojson menhir ];
prefixKey = "--prefix ";
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 ];
};
}