3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/compilers/reason/default.nix

62 lines
1.4 KiB
Nix
Raw Normal View History

{ lib, callPackage, stdenv, makeWrapper, fetchFromGitHub, ocaml, findlib, dune_2
, fix, menhir, menhirLib, menhirSdk, merlin-extend, ppxlib, utop, cppo, ppx_derivers
}:
2017-04-08 12:34:41 +01:00
stdenv.mkDerivation rec {
2021-04-07 07:04:16 +01:00
pname = "ocaml${ocaml.version}-reason";
version = "3.7.0";
2017-10-27 12:14:29 +01:00
2017-04-08 12:34:41 +01:00
src = fetchFromGitHub {
owner = "facebook";
repo = "reason";
2021-04-07 07:04:16 +01:00
rev = "daa11255cb4716ce1c370925251021bd6e3bd974";
sha256 = "0m6ldrci1a4j0qv1cbwh770zni3al8qxsphl353rv19f6rblplhs";
2017-04-08 12:34:41 +01:00
};
nativeBuildInputs = [
makeWrapper
menhir
];
buildInputs = [
cppo
dune_2
findlib
fix
menhir
menhirSdk
ocaml
ppxlib
utop
];
propagatedBuildInputs = [
menhirLib
merlin-extend
ppx_derivers
];
2017-04-08 12:34:41 +01:00
buildFlags = [ "build" ]; # do not "make tests" before reason lib is installed
2020-12-29 15:11:59 +00:00
installPhase = ''
dune install --prefix=$out --libdir=$OCAMLFIND_DESTDIR
2017-04-08 12:34:41 +01: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 12:34:41 +01:00
'';
2017-10-27 12:14:29 +01:00
passthru.tests = {
hello = callPackage ./tests/hello { };
};
meta = with lib; {
homepage = "https://reasonml.github.io/";
downloadPage = "https://github.com/reasonml/reason";
2017-10-27 12:14:29 +01:00
description = "Facebook's friendly syntax to OCaml";
2018-08-07 10:58:21 +01:00
license = licenses.mit;
inherit (ocaml.meta) platforms;
2021-11-03 00:38:27 +00:00
maintainers = with maintainers; [ ];
2017-10-27 12:14:29 +01:00
};
2017-04-08 12:34:41 +01:00
}