aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/tools/ocaml/js_of_ocaml/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/tools/ocaml/js_of_ocaml/default.nix')
-rw-r--r--nixpkgs/pkgs/development/tools/ocaml/js_of_ocaml/default.nix40
1 files changed, 8 insertions, 32 deletions
diff --git a/nixpkgs/pkgs/development/tools/ocaml/js_of_ocaml/default.nix b/nixpkgs/pkgs/development/tools/ocaml/js_of_ocaml/default.nix
index 7f6426c9610..9a57b590d6c 100644
--- a/nixpkgs/pkgs/development/tools/ocaml/js_of_ocaml/default.nix
+++ b/nixpkgs/pkgs/development/tools/ocaml/js_of_ocaml/default.nix
@@ -1,40 +1,16 @@
-{ stdenv, fetchurl, ocaml, findlib, lwt, menhir, ocsigen_deriving, ppx_deriving, camlp4, ocamlbuild
-, cmdliner, tyxml, reactivedata, cppo, which, base64, uchar, yojson
+{ stdenv, ocaml, findlib, dune_2, js_of_ocaml-compiler
+, ocaml-migrate-parsetree, ppx_tools_versioned, uchar
}:
-let version = if stdenv.lib.versionAtLeast ocaml.version "4.02"
- then "2.8.4" else "2.7";
-in
-
stdenv.mkDerivation {
- pname = "js_of_ocaml";
- inherit version;
- src = fetchurl {
- url = "https://github.com/ocsigen/js_of_ocaml/archive/${version}.tar.gz";
- sha256 = {
- "2.7" = "1dali1akyd4zmkwav0d957ynxq2jj6cc94r4xiaql7ca89ajz4jj";
- "2.8.4" = "098ph50s9kqw6rc3qjn39zv9b5swdf4qr44afwqfkkjgjs5d7vbl";
- }.${version};
- };
+ pname = "js_of_ocaml";
- buildInputs = [ ocaml findlib menhir ocsigen_deriving ocamlbuild
- cmdliner reactivedata cppo which base64 ]
- ++ stdenv.lib.optionals (stdenv.lib.versionAtLeast ocaml.version "4.02") [ yojson tyxml ];
- propagatedBuildInputs = [ lwt camlp4 ppx_deriving ]
- ++ stdenv.lib.optional (version == "2.8.4") uchar;
+ inherit (js_of_ocaml-compiler) version src installPhase meta;
- patches = [ ./Makefile.conf.diff ];
+ buildInputs = [ findlib ocaml-migrate-parsetree ppx_tools_versioned ];
+ nativeBuildInputs = [ ocaml findlib dune_2 ];
- createFindlibDestdir = true;
+ propagatedBuildInputs = [ js_of_ocaml-compiler uchar ];
- meta = with stdenv.lib; {
- homepage = "http://ocsigen.org/js_of_ocaml/";
- description = "Compiler of OCaml bytecode to Javascript. It makes it possible to run Ocaml programs in a Web browser";
- license = licenses.lgpl2;
- platforms = ocaml.meta.platforms or [];
- maintainers = [
- maintainers.gal_bolle
- ];
- broken = versionAtLeast ocaml.version "4.05";
- };
+ buildPhase = "dune build -p js_of_ocaml";
}