about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/lwt
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-11-01 03:40:38 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-11-01 16:58:08 +0000
commit7e31aef88a03b32c31f2965bf532e07564ec5b2d (patch)
treed472cece134caa33cd560840397c3a7f339ce008 /pkgs/development/ocaml-modules/lwt
parent1167fde2b295026c7ab5e497fa621979d36df097 (diff)
downloadnixlib-7e31aef88a03b32c31f2965bf532e07564ec5b2d.tar
nixlib-7e31aef88a03b32c31f2965bf532e07564ec5b2d.tar.gz
nixlib-7e31aef88a03b32c31f2965bf532e07564ec5b2d.tar.bz2
nixlib-7e31aef88a03b32c31f2965bf532e07564ec5b2d.tar.lz
nixlib-7e31aef88a03b32c31f2965bf532e07564ec5b2d.tar.xz
nixlib-7e31aef88a03b32c31f2965bf532e07564ec5b2d.tar.zst
nixlib-7e31aef88a03b32c31f2965bf532e07564ec5b2d.zip
ocamlPackages.lwt: remove spurious dependency on oasis
Diffstat (limited to 'pkgs/development/ocaml-modules/lwt')
-rw-r--r--pkgs/development/ocaml-modules/lwt/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/lwt/default.nix b/pkgs/development/ocaml-modules/lwt/default.nix
index c3acdcf5bdb4..53ba904f628e 100644
--- a/pkgs/development/ocaml-modules/lwt/default.nix
+++ b/pkgs/development/ocaml-modules/lwt/default.nix
@@ -1,5 +1,5 @@
 { stdenv, buildOcaml, fetchzip, which, cryptopp, ocaml, findlib, ocamlbuild, camlp4
-, react, ssl, libev, pkgconfig, ncurses, ocaml_oasis, glib
+, react, ssl, libev, pkgconfig, ncurses, glib
 , ppx_tools, result, cppo
 , ppxSupport ? stdenv.lib.versionAtLeast ocaml.version "4.02"
 , version ? if stdenv.lib.versionAtLeast ocaml.version "4.02" then "2.7.1" else "2.6.0"
@@ -27,7 +27,7 @@ buildOcaml rec {
   };
 
   nativeBuildInputs = [ pkgconfig ];
-  buildInputs = [ ocaml_oasis which cryptopp ocaml findlib ocamlbuild glib ncurses camlp4 cppo ]
+  buildInputs = [ which cryptopp ocaml findlib ocamlbuild glib ncurses camlp4 cppo ]
   ++ stdenv.lib.optional ppxSupport ppx_tools;
 
   propagatedBuildInputs = [ result ]