summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2022-03-11 08:12:25 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2022-03-11 16:11:08 +0100
commit7163b67543c8b7144356dbfe2705335cf0c1edf6 (patch)
treedec1ce568d2842e6e2ef89d703fcc5d5846ea504 /pkgs/development/compilers
parent1d5b39880f46424b4f08639b843d16c3230780d6 (diff)
downloadnixpkgs-7163b67543c8b7144356dbfe2705335cf0c1edf6.tar
nixpkgs-7163b67543c8b7144356dbfe2705335cf0c1edf6.tar.gz
nixpkgs-7163b67543c8b7144356dbfe2705335cf0c1edf6.tar.bz2
nixpkgs-7163b67543c8b7144356dbfe2705335cf0c1edf6.tar.lz
nixpkgs-7163b67543c8b7144356dbfe2705335cf0c1edf6.tar.xz
nixpkgs-7163b67543c8b7144356dbfe2705335cf0c1edf6.tar.zst
nixpkgs-7163b67543c8b7144356dbfe2705335cf0c1edf6.zip
reason: 3.7.0 → 3.8.0
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/reason/default.nix17
1 files changed, 7 insertions, 10 deletions
diff --git a/pkgs/development/compilers/reason/default.nix b/pkgs/development/compilers/reason/default.nix
index 4404a510828..cc99aa078f9 100644
--- a/pkgs/development/compilers/reason/default.nix
+++ b/pkgs/development/compilers/reason/default.nix
@@ -1,19 +1,14 @@
-{ lib, callPackage, stdenv, makeWrapper, fetchFromGitHub, ocaml, findlib, dune_2
+{ lib, callPackage, stdenv, makeWrapper, fetchurl, ocaml, findlib, dune_2
 , fix, menhir, menhirLib, menhirSdk, merlin-extend, ppxlib, utop, cppo, ppx_derivers
 }:
 
-lib.throwIfNot (lib.versionOlder ocaml.version "4.13")
-  "reason is not available for OCaml ${ocaml.version}"
-
 stdenv.mkDerivation rec {
   pname = "ocaml${ocaml.version}-reason";
-  version = "3.7.0";
+  version = "3.8.0";
 
-  src = fetchFromGitHub {
-    owner = "facebook";
-    repo = "reason";
-    rev = "daa11255cb4716ce1c370925251021bd6e3bd974";
-    sha256 = "0m6ldrci1a4j0qv1cbwh770zni3al8qxsphl353rv19f6rblplhs";
+  src = fetchurl {
+    url = "https://github.com/reasonml/reason/releases/download/${version}/reason-${version}.tbz";
+    sha256 = "sha256:0yc94m3ddk599crg33yxvkphxpy54kmdsl599c320wvn055p4y4l";
   };
 
   nativeBuildInputs = [
@@ -42,11 +37,13 @@ stdenv.mkDerivation rec {
   buildFlags = [ "build" ]; # do not "make tests" before reason lib is installed
 
   installPhase = ''
+    runHook preInstall
     dune install --prefix=$out --libdir=$OCAMLFIND_DESTDIR
     wrapProgram $out/bin/rtop \
       --prefix PATH : "${utop}/bin" \
       --prefix CAML_LD_LIBRARY_PATH : "$CAML_LD_LIBRARY_PATH" \
       --prefix OCAMLPATH : "$OCAMLPATH:$OCAMLFIND_DESTDIR"
+    runHook postInstall
   '';
 
   passthru.tests = {