a9be3c20d1
This fixes compilation of ppx_deriving with OCaml 4.05. js_of_ocaml_2: mark as broken with OCaml 4.05 ocamlPackages.cohttp: propagates ppx_deriving
40 lines
1.4 KiB
Nix
40 lines
1.4 KiB
Nix
{ stdenv, fetchurl, ocaml, findlib, lwt, menhir, ocsigen_deriving, ppx_deriving, camlp4, ocamlbuild
|
|
, cmdliner, tyxml, reactivedata, cppo, which, base64, uchar, yojson
|
|
}:
|
|
|
|
let version = if stdenv.lib.versionAtLeast ocaml.version "4.02"
|
|
then "2.8.4" else "2.7";
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
name = "js_of_ocaml-${version}";
|
|
src = fetchurl {
|
|
url = "https://github.com/ocsigen/js_of_ocaml/archive/${version}.tar.gz";
|
|
sha256 = {
|
|
"2.7" = "1dali1akyd4zmkwav0d957ynxq2jj6cc94r4xiaql7ca89ajz4jj";
|
|
"2.8.4" = "098ph50s9kqw6rc3qjn39zv9b5swdf4qr44afwqfkkjgjs5d7vbl";
|
|
}."${version}";
|
|
};
|
|
|
|
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;
|
|
|
|
patches = [ ./Makefile.conf.diff ];
|
|
|
|
createFindlibDestdir = true;
|
|
|
|
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";
|
|
};
|
|
}
|