3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/ocaml/js_of_ocaml/default.nix

29 lines
884 B
Nix
Raw Normal View History

2014-10-14 12:04:19 +01:00
{stdenv, fetchurl, ocaml, findlib, ocaml_lwt, menhir, ocsigen_deriving, camlp4,
2014-10-15 10:13:58 +01:00
cmdliner, tyxml, reactivedata}:
2014-05-28 21:04:40 +01:00
stdenv.mkDerivation {
name = "js_of_ocaml-2.5";
2014-05-28 21:04:40 +01:00
src = fetchurl {
2014-10-14 12:04:19 +01:00
url = https://github.com/ocsigen/js_of_ocaml/archive/2.5.tar.gz;
sha256 = "1prm08nf8szmd3p13ysb0yx1cy6lr671bnwsp25iny8hfbs39sjv";
2014-05-28 21:04:40 +01:00
};
2014-11-23 11:23:06 +00:00
buildInputs = [ocaml findlib menhir ocsigen_deriving
2014-10-15 10:13:58 +01:00
cmdliner tyxml camlp4 reactivedata];
2014-11-23 11:23:06 +00:00
propagatedBuildInputs = [ ocaml_lwt ];
2014-05-28 21:04:40 +01:00
patches = [ ./Makefile.conf.diff ];
createFindlibDestdir = true;
2014-11-23 11:23:06 +00:00
meta = with stdenv.lib; {
2014-05-28 21:04:40 +01:00
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";
2014-11-23 11:23:06 +00:00
license = licenses.lgpl2;
2014-05-28 21:04:40 +01:00
platforms = ocaml.meta.platforms;
maintainers = [
2014-11-23 11:23:06 +00:00
maintainers.gal_bolle
2014-05-28 21:04:40 +01:00
];
};
}