nixpkgs/pkgs/development/ocaml-modules/eliom/default.nix

63 lines
1.7 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchzip, which, ocsigen_server, ocaml,
lwt_react,
opaline, ppx_deriving, findlib
, ocaml-migrate-parsetree
2021-01-04 07:43:44 +00:00
, ppx_tools_versioned
2018-03-31 05:41:24 +00:00
, js_of_ocaml-ocamlbuild, js_of_ocaml-ppx, js_of_ocaml-ppx_deriving_json
, js_of_ocaml-lwt
, js_of_ocaml-tyxml
2019-01-14 22:52:07 +00:00
, lwt_ppx
, ocamlnet
2016-12-10 09:59:01 +00:00
}:
2016-12-10 09:59:01 +00:00
stdenv.mkDerivation rec
{
2014-10-19 16:47:18 +00:00
pname = "eliom";
version = "8.6.0";
src = fetchzip {
2016-05-30 15:46:49 +00:00
url = "https://github.com/ocsigen/eliom/archive/${version}.tar.gz";
sha256 = "0s1hpawwhqp4qcy8w1067n8c6zg8jcjpzplc39bjbb1ycqw667j9";
};
buildInputs = [ ocaml which findlib js_of_ocaml-ocamlbuild
ocaml-migrate-parsetree
js_of_ocaml-ppx_deriving_json opaline
2021-01-04 07:43:44 +00:00
ppx_tools_versioned
ocamlnet
2018-03-31 05:41:24 +00:00
];
2014-10-19 16:48:04 +00:00
2018-03-31 05:41:24 +00:00
propagatedBuildInputs = [
js_of_ocaml-lwt
js_of_ocaml-ppx
js_of_ocaml-tyxml
2019-01-14 22:52:07 +00:00
lwt_ppx
2018-03-31 05:41:24 +00:00
lwt_react
ocsigen_server
ppx_deriving
];
2018-05-28 07:35:51 +00:00
installPhase = "opaline -prefix $out -libdir $OCAMLFIND_DESTDIR";
setupHook = [ ./setup-hook.sh ];
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";
2014-09-22 09:00:51 +00:00
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 = lib.licenses.lgpl21;
2014-09-22 09:00:51 +00:00
maintainers = [ lib.maintainers.gal_bolle ];
2014-09-22 09:00:51 +00:00
};
2016-10-22 09:08:27 +00:00
}