about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/reactivedata
diff options
context:
space:
mode:
authorFlorent Becker <Florent.Becker@ens-lyon.org>2016-05-30 17:36:49 +0200
committerFlorent Becker <florent.becker@ens-lyon.org>2016-05-31 19:10:07 +0200
commit2ddee12a422ad6307696df7f74ec6b98f98faa01 (patch)
treec10477c4ecc35c353df3ddcef8228709f568e907 /pkgs/development/ocaml-modules/reactivedata
parentdab153bf7290e677e57598387a879d281673cf4b (diff)
downloadnixlib-2ddee12a422ad6307696df7f74ec6b98f98faa01.tar
nixlib-2ddee12a422ad6307696df7f74ec6b98f98faa01.tar.gz
nixlib-2ddee12a422ad6307696df7f74ec6b98f98faa01.tar.bz2
nixlib-2ddee12a422ad6307696df7f74ec6b98f98faa01.tar.lz
nixlib-2ddee12a422ad6307696df7f74ec6b98f98faa01.tar.xz
nixlib-2ddee12a422ad6307696df7f74ec6b98f98faa01.tar.zst
nixlib-2ddee12a422ad6307696df7f74ec6b98f98faa01.zip
ocaml-reactiveData : 0.1 -> 0.2
Diffstat (limited to 'pkgs/development/ocaml-modules/reactivedata')
-rw-r--r--pkgs/development/ocaml-modules/reactivedata/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/ocaml-modules/reactivedata/default.nix b/pkgs/development/ocaml-modules/reactivedata/default.nix
index ef0197f60f57..4b335496500b 100644
--- a/pkgs/development/ocaml-modules/reactivedata/default.nix
+++ b/pkgs/development/ocaml-modules/reactivedata/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, ocaml, findlib, ocaml_react, opam}:
+{stdenv, fetchurl, ocaml, findlib, ocaml_react, camlp4, opam}:
 
 let
   ocamlVersion = stdenv.lib.getVersion ocaml;
@@ -7,13 +7,13 @@ in
 assert stdenv.lib.versionAtLeast ocamlVersion "3.11";
 
 stdenv.mkDerivation {
-  name = "ocaml-reactiveData-0.1";
+  name = "ocaml-reactiveData-0.2";
   src = fetchurl {
-    url = https://github.com/hhugo/reactiveData/archive/0.1.tar.gz;
-    sha256 = "056y9in6j6rpggdf8apailvs1m30wxizpyyrj08xyfxgv91mhxgw";
+    url = https://github.com/ocsigen/reactiveData/archive/0.2.tar.gz;
+    sha256 = "0rskcxnyjn8sxqnncdm6rh9wm99nha5m5sc83fywgzs64xfl43fq";
   };
 
-  buildInputs = [ocaml findlib opam];
+  buildInputs = [ocaml findlib opam camlp4 ];
   propagatedBuildInputs = [ocaml_react];
 
   buildPhase = "ocaml pkg/build.ml native=true native-dynlink=true";
@@ -26,7 +26,7 @@ stdenv.mkDerivation {
 
   meta = with stdenv.lib; {
     description = "An OCaml module for functional reactive programming (FRP) based on React";
-    homepage = https://github.com/hhugo/reactiveData;
+    homepage = https://github.com/ocsigen/reactiveData;
     license = licenses.lgpl21;
     platforms = ocaml.meta.platforms or [];
     maintainers = with maintainers; [ vbgl ];