nixpkgs/pkgs/development/compilers/reason/default.nix

41 lines
1.2 KiB
Nix
Raw Normal View History

2018-09-05 16:11:47 +00:00
{ stdenv, makeWrapper, fetchFromGitHub, ocaml, findlib, dune
2020-02-04 08:49:23 +00:00
, fix, menhir, merlin-extend, ppx_tools_versioned, utop, cppo
}:
2017-04-08 11:34:41 +00:00
stdenv.mkDerivation rec {
name = "ocaml${ocaml.version}-reason-${version}";
2020-09-09 04:26:58 +00:00
version = "3.6.2";
2017-10-27 11:14:29 +00:00
2017-04-08 11:34:41 +00:00
src = fetchFromGitHub {
owner = "facebook";
repo = "reason";
2020-09-09 04:26:58 +00:00
rev = "6017d6dd930f4989177c3f7c3c20cffbaabaa49a";
sha256 = "17wkcl3r0ckhlki9fk0mcwbnd7kpkqm1h0xjw2j2x1097n470df0";
2017-04-08 11:34:41 +00:00
};
nativeBuildInputs = [ makeWrapper ];
propagatedBuildInputs = [ menhir merlin-extend ppx_tools_versioned ];
2017-04-08 11:34:41 +00:00
2020-02-04 08:49:23 +00:00
buildInputs = [ ocaml findlib dune cppo fix utop menhir ];
2017-04-08 11:34:41 +00:00
buildFlags = [ "build" ]; # do not "make tests" before reason lib is installed
inherit (dune) installPhase;
2017-04-08 11:34:41 +00:00
postInstall = ''
2017-04-08 11:34:41 +00:00
wrapProgram $out/bin/rtop \
--prefix PATH : "${utop}/bin" \
2020-02-04 08:49:23 +00:00
--prefix CAML_LD_LIBRARY_PATH : "$CAML_LD_LIBRARY_PATH" \
--prefix OCAMLPATH : "$OCAMLPATH:$OCAMLFIND_DESTDIR"
2017-04-08 11:34:41 +00:00
'';
2017-10-27 11:14:29 +00:00
meta = with stdenv.lib; {
homepage = "https://reasonml.github.io/";
2017-10-27 11:14:29 +00:00
description = "Facebook's friendly syntax to OCaml";
2018-08-07 09:58:21 +00:00
license = licenses.mit;
inherit (ocaml.meta) platforms;
2017-10-27 11:14:29 +00:00
maintainers = [ maintainers.volth ];
};
2017-04-08 11:34:41 +00:00
}