about summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authordywedir <dywedir@protonmail.ch>2017-10-27 14:14:29 +0300
committerVincent Laporte <vbgl@users.noreply.github.com>2017-10-27 14:13:26 +0200
commit1b2a0e0f45b3265fbf7545d4ec5f758786970692 (patch)
treec983dbd109161f6d3f0215791f98906022f12c25 /pkgs/development/compilers
parenta86e48acaec82c8156990e62fba6bf85e0a451b5 (diff)
downloadnixlib-1b2a0e0f45b3265fbf7545d4ec5f758786970692.tar
nixlib-1b2a0e0f45b3265fbf7545d4ec5f758786970692.tar.gz
nixlib-1b2a0e0f45b3265fbf7545d4ec5f758786970692.tar.bz2
nixlib-1b2a0e0f45b3265fbf7545d4ec5f758786970692.tar.lz
nixlib-1b2a0e0f45b3265fbf7545d4ec5f758786970692.tar.xz
nixlib-1b2a0e0f45b3265fbf7545d4ec5f758786970692.tar.zst
nixlib-1b2a0e0f45b3265fbf7545d4ec5f758786970692.zip
ocamlPackages.reason: 2.0.0 -> 3.0.0
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/reason/default.nix44
1 files changed, 14 insertions, 30 deletions
diff --git a/pkgs/development/compilers/reason/default.nix b/pkgs/development/compilers/reason/default.nix
index e364f536c889..a4f0442d9d1b 100644
--- a/pkgs/development/compilers/reason/default.nix
+++ b/pkgs/development/compilers/reason/default.nix
@@ -1,41 +1,20 @@
 { stdenv, makeWrapper, buildOcaml, fetchFromGitHub,
   ocaml, opam, topkg, menhir, merlin_extend, ppx_tools_versioned, utop }:
 
-let 
-  version = "2.0.0";
+buildOcaml rec {
+  name = "reason";
+  version = "3.0.0";
+
   src = fetchFromGitHub {
     owner = "facebook";
     repo = "reason";
     rev = version;
-    sha256 = "0l3lwfvppplah707rq5nqjav2354lq6d7xfflfigkzhn74hlx6iy";
+    sha256 = "0vj3y9vlm9gqvj9grmb9n487avbrj4q5611m7wv1bsdpndvv96jr";
   };
-  meta = with stdenv.lib; {
-    homepage = https://facebook.github.io/reason/;
-    description = "Facebook's friendly syntax to OCaml";
-    license = licenses.bsd3;
-    maintainers = [ maintainers.volth ];
-  };
-
-  reason-parser = buildOcaml {
-    name = "reason-parser";
-    inherit version src meta;
-    sourceRoot = "reason-${version}-src/reason-parser";
 
-    minimumSupportedOcamlVersion = "4.02";
+  propagatedBuildInputs = [ menhir merlin_extend ppx_tools_versioned ];
 
-    propagatedBuildInputs = [ menhir merlin_extend ppx_tools_versioned ];
-    buildInputs = [ opam topkg ];
-
-    createFindlibDestdir = true;
-
-    inherit (topkg) installPhase;
-  };
-in
-buildOcaml {
-  name = "reason";
-  inherit version src meta;
-
-  buildInputs = [ makeWrapper opam topkg reason-parser utop ];
+  buildInputs = [ makeWrapper opam topkg utop menhir opam topkg ];
 
   buildFlags = [ "build" ]; # do not "make tests" before reason lib is installed
 
@@ -48,10 +27,15 @@ buildOcaml {
   installPhase = ''
     ${topkg.installPhase}
 
-    wrapProgram $out/bin/reup \
-      --prefix PATH : "${opam}/bin"
     wrapProgram $out/bin/rtop \
       --prefix PATH : "${utop}/bin" \
       --set OCAMLPATH $out/lib/ocaml/${ocaml.version}/site-lib:$OCAMLPATH
   '';
+
+  meta = with stdenv.lib; {
+    homepage = https://facebook.github.io/reason/;
+    description = "Facebook's friendly syntax to OCaml";
+    license = licenses.bsd3;
+    maintainers = [ maintainers.volth ];
+  };
 }