summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/eliom
diff options
context:
space:
mode:
authorFlorent Becker <florent.becker@univ-orleans.fr>2014-09-22 11:00:51 +0200
committerFlorent Becker <florent.becker@univ-orleans.fr>2014-09-22 11:00:51 +0200
commit8e4a1aebddcdce0b91a6e826e0fb083b439e1035 (patch)
tree93abf968492c6b733a180fc050626b5975b0d2c4 /pkgs/development/ocaml-modules/eliom
parent4cc00a1f2bff22468806da0f52bd8752aa185a77 (diff)
downloadnixpkgs-8e4a1aebddcdce0b91a6e826e0fb083b439e1035.tar
nixpkgs-8e4a1aebddcdce0b91a6e826e0fb083b439e1035.tar.gz
nixpkgs-8e4a1aebddcdce0b91a6e826e0fb083b439e1035.tar.bz2
nixpkgs-8e4a1aebddcdce0b91a6e826e0fb083b439e1035.tar.lz
nixpkgs-8e4a1aebddcdce0b91a6e826e0fb083b439e1035.tar.xz
nixpkgs-8e4a1aebddcdce0b91a6e826e0fb083b439e1035.tar.zst
nixpkgs-8e4a1aebddcdce0b91a6e826e0fb083b439e1035.zip
meta for ocamlPackages.eliom
Diffstat (limited to 'pkgs/development/ocaml-modules/eliom')
-rw-r--r--pkgs/development/ocaml-modules/eliom/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/eliom/default.nix b/pkgs/development/ocaml-modules/eliom/default.nix
index af85a0a8f94..8a7045e263a 100644
--- a/pkgs/development/ocaml-modules/eliom/default.nix
+++ b/pkgs/development/ocaml-modules/eliom/default.nix
@@ -26,4 +26,25 @@ stdenv.mkDerivation
   dontAddPrefix = true;  
 
   createFindlibDestdir = true;
+
+  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;
+
+    platforms = ocaml.meta.platforms;
+
+    maintainers = [ stdenv.lib.maintainers.gal_bolle ];
+  };
 }