From 2ddee12a422ad6307696df7f74ec6b98f98faa01 Mon Sep 17 00:00:00 2001 From: Florent Becker Date: Mon, 30 May 2016 17:36:49 +0200 Subject: [PATCH] =?UTF-8?q?ocaml-reactiveData=20:=C2=A00.1=20->=200.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ocaml-modules/reactivedata/default.nix | 12 ++++++------ 1 file 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 ];