about summary refs log tree commit diff
path: root/pkgs/development/compilers/reason/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/compilers/reason/default.nix')
-rw-r--r--pkgs/development/compilers/reason/default.nix65
1 files changed, 0 insertions, 65 deletions
diff --git a/pkgs/development/compilers/reason/default.nix b/pkgs/development/compilers/reason/default.nix
deleted file mode 100644
index 954c58718cf3..000000000000
--- a/pkgs/development/compilers/reason/default.nix
+++ /dev/null
@@ -1,65 +0,0 @@
-{ lib, callPackage, stdenv, makeWrapper, fetchurl, ocaml, findlib, dune_3
-, ncurses
-, fix, menhir, menhirLib, menhirSdk, merlin-extend, ppxlib, utop, cppo, ppx_derivers
-, dune-build-info
-}:
-
-stdenv.mkDerivation rec {
-  pname = "ocaml${ocaml.version}-reason";
-  version = "3.11.0";
-
-  src = fetchurl {
-    url = "https://github.com/reasonml/reason/releases/download/${version}/reason-${version}.tbz";
-    hash = "sha256-pYg38Up58EfI65nVUYrrFu5kNTV0KGz9WyhMmKGiclA=";
-  };
-
-  strictDeps = true;
-  nativeBuildInputs = [
-    makeWrapper
-    menhir
-    ocaml
-    menhir
-    cppo
-    dune_3
-    findlib
-  ];
-
-  buildInputs = [
-    dune-build-info
-    fix
-    menhirSdk
-    ppxlib
-    utop
-  ] ++ lib.optional (lib.versionOlder ocaml.version "4.07") ncurses;
-
-  propagatedBuildInputs = [
-    menhirLib
-    merlin-extend
-    ppx_derivers
-  ];
-
-  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 = {
-    hello = callPackage ./tests/hello { };
-  };
-
-  meta = with lib; {
-    homepage = "https://reasonml.github.io/";
-    downloadPage = "https://github.com/reasonml/reason";
-    description = "Facebook's friendly syntax to OCaml";
-    license = licenses.mit;
-    inherit (ocaml.meta) platforms;
-    maintainers = with maintainers; [ ];
-  };
-}