summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/reactivedata
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-10-05 05:57:03 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-10-05 08:39:50 +0000
commitc06e5a8d64c978e7adf66f6a00e573635b6930e2 (patch)
treefa185873d74f9e43c06e03ca5e2d2e03c3fcc9fa /pkgs/development/ocaml-modules/reactivedata
parent184f80aeb8c70f21f82b89eafc789e8a91504a8d (diff)
downloadnixlib-c06e5a8d64c978e7adf66f6a00e573635b6930e2.tar
nixlib-c06e5a8d64c978e7adf66f6a00e573635b6930e2.tar.gz
nixlib-c06e5a8d64c978e7adf66f6a00e573635b6930e2.tar.bz2
nixlib-c06e5a8d64c978e7adf66f6a00e573635b6930e2.tar.lz
nixlib-c06e5a8d64c978e7adf66f6a00e573635b6930e2.tar.xz
nixlib-c06e5a8d64c978e7adf66f6a00e573635b6930e2.tar.zst
nixlib-c06e5a8d64c978e7adf66f6a00e573635b6930e2.zip
ocamlPackages.react: 1.2.0 -> 1.2.1
Diffstat (limited to 'pkgs/development/ocaml-modules/reactivedata')
-rw-r--r--pkgs/development/ocaml-modules/reactivedata/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/reactivedata/default.nix b/pkgs/development/ocaml-modules/reactivedata/default.nix
index 828a3fb60683..1f1781f5a65b 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, ocamlbuild, ocaml_react, opam }:
+{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, react, opam }:
 
 assert stdenv.lib.versionAtLeast ocaml.version "3.11";
 
@@ -10,7 +10,7 @@ stdenv.mkDerivation {
   };
 
   buildInputs = [ ocaml findlib ocamlbuild opam ];
-  propagatedBuildInputs = [ocaml_react];
+  propagatedBuildInputs = [ react ];
 
   buildPhase = "ocaml pkg/build.ml native=true native-dynlink=true";