2014-06-08 10:14:08 +00:00
|
|
|
{ stdenv, fetchurl, ocaml, findlib, which, ocsigen_server, ocsigen_deriving,
|
|
|
|
js_of_ocaml, ocaml_react, ocaml_lwt, calendar, cryptokit, tyxml,
|
2015-05-15 14:35:42 +00:00
|
|
|
ipaddr, ocamlnet, ocaml_ssl, ocaml_pcre, ocaml_optcomp,
|
2016-05-30 15:46:49 +00:00
|
|
|
reactivedata, opam, ppx_tools, camlp4}:
|
2014-06-08 10:14:08 +00:00
|
|
|
|
2016-05-31 16:36:45 +00:00
|
|
|
let ocamlVersion = (stdenv.lib.getVersion ocaml);
|
|
|
|
in
|
|
|
|
|
|
|
|
(
|
|
|
|
assert stdenv.lib.versionAtLeast ocamlVersion "4";
|
2015-10-14 22:29:33 +00:00
|
|
|
|
2014-10-19 16:47:18 +00:00
|
|
|
stdenv.mkDerivation rec
|
2014-06-08 10:14:08 +00:00
|
|
|
{
|
2014-10-19 16:47:18 +00:00
|
|
|
pname = "eliom";
|
2016-05-30 15:46:49 +00:00
|
|
|
version = "5.0.0";
|
2014-10-19 16:47:18 +00:00
|
|
|
name = "${pname}-${version}";
|
2014-06-08 10:14:08 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-05-30 15:46:49 +00:00
|
|
|
url = "https://github.com/ocsigen/eliom/archive/${version}.tar.gz";
|
|
|
|
sha256 = "1g9wq2qpn0sgzyb6iq0h9afq5p68il4h8pc7jppqsislk87m09k7";
|
2014-06-08 10:14:08 +00:00
|
|
|
};
|
|
|
|
|
2015-06-11 22:04:24 +00:00
|
|
|
patches = [ ./camlp4.patch ];
|
|
|
|
|
2014-06-08 10:14:08 +00:00
|
|
|
buildInputs = [ocaml which ocsigen_server findlib ocsigen_deriving
|
2016-05-30 15:46:49 +00:00
|
|
|
js_of_ocaml ocaml_optcomp opam ppx_tools camlp4 ];
|
2014-10-19 16:48:04 +00:00
|
|
|
|
2015-05-15 14:35:42 +00:00
|
|
|
propagatedBuildInputs = [ ocaml_lwt reactivedata tyxml ipaddr
|
2014-10-19 16:48:04 +00:00
|
|
|
calendar cryptokit ocamlnet ocaml_react ocaml_ssl
|
|
|
|
ocaml_pcre ];
|
2014-06-08 10:14:08 +00:00
|
|
|
|
2016-05-31 16:36:45 +00:00
|
|
|
preConfigure = stdenv.lib.optionalString (!stdenv.lib.versionAtLeast ocamlVersion "4.02") ''
|
|
|
|
export PPX=false
|
|
|
|
'';
|
|
|
|
|
2014-10-19 16:47:18 +00:00
|
|
|
installPhase =
|
|
|
|
''opam-installer --script --prefix=$out ${pname}.install > install.sh
|
|
|
|
sh install.sh
|
|
|
|
ln -s $out/lib/${pname} $out/lib/ocaml/${ocamlVersion}/site-lib/
|
|
|
|
'';
|
2014-06-08 10:14:08 +00:00
|
|
|
|
|
|
|
createFindlibDestdir = true;
|
2014-09-22 09:00:51 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://ocsigen.org/eliom/;
|
|
|
|
description = "Ocaml Framework for programming Web sites and client/server Web applications";
|
|
|
|
|
|
|
|
longDescription =''Eliom is a framework for programming Web sites
|
|
|
|
and client/server Web applications. It introduces new concepts to
|
|
|
|
simplify programming common behaviours and uses advanced static
|
|
|
|
typing features of OCaml to check many properties of the Web site
|
|
|
|
at compile time. If you want to write a Web application, Eliom
|
|
|
|
makes possible to write the whole application as a single program
|
|
|
|
(client and server parts). A syntax extension is used to
|
|
|
|
distinguish both parts and the client side is compiled to JS using
|
|
|
|
Ocsigen Js_of_ocaml.'';
|
|
|
|
|
|
|
|
license = stdenv.lib.licenses.lgpl21;
|
|
|
|
|
2015-12-24 17:49:07 +00:00
|
|
|
platforms = ocaml.meta.platforms or [];
|
2014-09-22 09:00:51 +00:00
|
|
|
|
|
|
|
maintainers = [ stdenv.lib.maintainers.gal_bolle ];
|
|
|
|
};
|
2016-05-31 16:36:45 +00:00
|
|
|
})
|