summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Laporte <vbgl@users.noreply.github.com>2018-10-28 13:06:02 +0000
committerRenaud <c0bw3b@users.noreply.github.com>2018-10-28 14:06:02 +0100
commit8ef70a0b2957bc7ea78d4b7f86e6614a17dc507b (patch)
treed0d34a9267660c64420da8b070f07636bda03b67
parent07db5f1c8cccab5cdc40a3dca8bcea7881ccfb10 (diff)
downloadnixlib-8ef70a0b2957bc7ea78d4b7f86e6614a17dc507b.tar
nixlib-8ef70a0b2957bc7ea78d4b7f86e6614a17dc507b.tar.gz
nixlib-8ef70a0b2957bc7ea78d4b7f86e6614a17dc507b.tar.bz2
nixlib-8ef70a0b2957bc7ea78d4b7f86e6614a17dc507b.tar.lz
nixlib-8ef70a0b2957bc7ea78d4b7f86e6614a17dc507b.tar.xz
nixlib-8ef70a0b2957bc7ea78d4b7f86e6614a17dc507b.tar.zst
nixlib-8ef70a0b2957bc7ea78d4b7f86e6614a17dc507b.zip
reason: 3.3.3 -> 3.3.7 (#49325)
* reason: 3.3.3 -> 3.3.7

* reason: makeWrapper needed at build time only
moved makeWrapper from buildInputs to nativeBuildInputs
-rw-r--r--pkgs/development/compilers/reason/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/development/compilers/reason/default.nix b/pkgs/development/compilers/reason/default.nix
index 81c935fc421f..0832d14992d1 100644
--- a/pkgs/development/compilers/reason/default.nix
+++ b/pkgs/development/compilers/reason/default.nix
@@ -4,18 +4,20 @@
 
 stdenv.mkDerivation rec {
   name = "ocaml${ocaml.version}-reason-${version}";
-  version = "3.3.3";
+  version = "3.3.7";
 
   src = fetchFromGitHub {
     owner = "facebook";
     repo = "reason";
-    rev = "fefe5e4db3a54a7946c2220ee037dd2f407011c9";
-    sha256 = "1x0dbacgq9pa36zgzwrc0gm14wbb6v27y9bf7wcwk55a1ck0am18";
+    rev = "4d20e5b535c29c5ef1283e65958b32996e449e5a";
+    sha256 = "0f3pb61wg58g8f3wcnp1h4gpmnwmp7bq0cnqdfwldmh9cs0dqyfk";
   };
 
+  nativeBuildInputs = [ makeWrapper ];
+
   propagatedBuildInputs = [ menhir merlin_extend ppx_tools_versioned ];
 
-  buildInputs = [ makeWrapper ocaml findlib dune utop menhir ];
+  buildInputs = [ ocaml findlib dune utop menhir ];
 
   buildFlags = [ "build" ]; # do not "make tests" before reason lib is installed