about summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2014-11-23 11:23:06 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2014-11-23 12:37:00 +0000
commit1be6e7c60f9a1dadb8bea4db04831d540e94514a (patch)
tree643eceba67b1ef91ff7f7c94f212b9dd13b37de5 /pkgs/development/tools/ocaml
parent5ff169f4d7f2a2dc76f6670faefe589cbf416ea6 (diff)
downloadnixlib-1be6e7c60f9a1dadb8bea4db04831d540e94514a.tar
nixlib-1be6e7c60f9a1dadb8bea4db04831d540e94514a.tar.gz
nixlib-1be6e7c60f9a1dadb8bea4db04831d540e94514a.tar.bz2
nixlib-1be6e7c60f9a1dadb8bea4db04831d540e94514a.tar.lz
nixlib-1be6e7c60f9a1dadb8bea4db04831d540e94514a.tar.xz
nixlib-1be6e7c60f9a1dadb8bea4db04831d540e94514a.tar.zst
nixlib-1be6e7c60f9a1dadb8bea4db04831d540e94514a.zip
js_of_ocaml: propagate lwt dependency
Diffstat (limited to 'pkgs/development/tools/ocaml')
-rw-r--r--pkgs/development/tools/ocaml/js_of_ocaml/default.nix12
1 files changed, 5 insertions, 7 deletions
diff --git a/pkgs/development/tools/ocaml/js_of_ocaml/default.nix b/pkgs/development/tools/ocaml/js_of_ocaml/default.nix
index 103b0bfa45e5..9989afdefc4d 100644
--- a/pkgs/development/tools/ocaml/js_of_ocaml/default.nix
+++ b/pkgs/development/tools/ocaml/js_of_ocaml/default.nix
@@ -8,23 +8,21 @@ stdenv.mkDerivation {
     sha256 = "1prm08nf8szmd3p13ysb0yx1cy6lr671bnwsp25iny8hfbs39sjv";
     };
   
-  buildInputs = [ocaml findlib ocaml_lwt menhir ocsigen_deriving
+  buildInputs = [ocaml findlib menhir ocsigen_deriving
                  cmdliner tyxml camlp4 reactivedata];
+  propagatedBuildInputs = [ ocaml_lwt ];
 
   patches = [ ./Makefile.conf.diff ];  
 
   createFindlibDestdir = true;
 
-
-  meta =  {
+  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 = "LGPL";
+    license = licenses.lgpl2;
     platforms = ocaml.meta.platforms;
     maintainers = [
-      stdenv.lib.maintainers.gal_bolle
+      maintainers.gal_bolle
     ];
   };
-
-
 }