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

43 lines
1.1 KiB
Nix
Raw Normal View History

2017-04-08 14:34:41 +03:00
{ stdenv, makeWrapper, buildOcaml, fetchFromGitHub,
2017-11-23 02:43:08 +03:00
ocaml, opam, jbuilder, menhir, merlin_extend, ppx_tools_versioned, utop }:
2017-04-08 14:34:41 +03:00
2017-10-27 14:14:29 +03:00
buildOcaml rec {
name = "reason";
2017-12-09 14:24:59 +03:00
version = "3.0.4";
2017-10-27 14:14:29 +03:00
2017-04-08 14:34:41 +03:00
src = fetchFromGitHub {
owner = "facebook";
repo = "reason";
2017-11-28 21:28:43 +03:00
rev = version;
2017-12-09 14:24:59 +03:00
sha256 = "15qhx85him5rr4j0ygj3jh3qv9ijrn82ibr9scbn0qrnn43kj047";
2017-04-08 14:34:41 +03:00
};
2017-10-27 14:14:29 +03:00
propagatedBuildInputs = [ menhir merlin_extend ppx_tools_versioned ];
2017-04-08 14:34:41 +03:00
2017-11-23 02:43:08 +03:00
buildInputs = [ makeWrapper opam jbuilder utop menhir ];
2017-04-08 14:34:41 +03:00
buildFlags = [ "build" ]; # do not "make tests" before reason lib is installed
createFindlibDestdir = true;
postPatch = ''
2017-11-23 02:43:08 +03:00
substituteInPlace src/reasonbuild/myocamlbuild.ml \
--replace "refmt --print binary" "$out/bin/refmt --print binary"
2017-04-08 14:34:41 +03:00
'';
installPhase = ''
2017-11-23 02:43:08 +03:00
${jbuilder.installPhase}
2017-04-08 14:34:41 +03:00
wrapProgram $out/bin/rtop \
--prefix PATH : "${utop}/bin" \
--set OCAMLPATH $out/lib/ocaml/${ocaml.version}/site-lib:$OCAMLPATH
'';
2017-10-27 14:14:29 +03:00
meta = with stdenv.lib; {
2017-12-09 14:24:59 +03:00
homepage = https://reasonml.github.io/;
2017-10-27 14:14:29 +03:00
description = "Facebook's friendly syntax to OCaml";
license = licenses.bsd3;
maintainers = [ maintainers.volth ];
};
2017-04-08 14:34:41 +03:00
}