about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/conduit
diff options
context:
space:
mode:
authorts468 <ts468@users.noreply.github.com>2015-09-06 21:15:10 +0200
committerts468 <ts468@users.noreply.github.com>2015-09-06 21:15:10 +0200
commit054be41e04e2f583433c8d69f73f63389aec7f77 (patch)
tree57b99067b9535540280af72c31b134d8ba8e1589 /pkgs/development/ocaml-modules/conduit
parenta9dab9df6110f6f5c8300c4408c845d8176539bd (diff)
downloadnixlib-054be41e04e2f583433c8d69f73f63389aec7f77.tar
nixlib-054be41e04e2f583433c8d69f73f63389aec7f77.tar.gz
nixlib-054be41e04e2f583433c8d69f73f63389aec7f77.tar.bz2
nixlib-054be41e04e2f583433c8d69f73f63389aec7f77.tar.lz
nixlib-054be41e04e2f583433c8d69f73f63389aec7f77.tar.xz
nixlib-054be41e04e2f583433c8d69f73f63389aec7f77.tar.zst
nixlib-054be41e04e2f583433c8d69f73f63389aec7f77.zip
Revert "ocaml-modules: fix naming: "_" -> "-""
Diffstat (limited to 'pkgs/development/ocaml-modules/conduit')
-rw-r--r--pkgs/development/ocaml-modules/conduit/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/conduit/default.nix b/pkgs/development/ocaml-modules/conduit/default.nix
index 2ea316462c26..dbb83f4c8cf0 100644
--- a/pkgs/development/ocaml-modules/conduit/default.nix
+++ b/pkgs/development/ocaml-modules/conduit/default.nix
@@ -1,5 +1,5 @@
 {stdenv, buildOcaml, fetchurl, sexplib, stringext, uri, cstruct, ipaddr,
- async ? null, async-ssl ? null, lwt ? null}:
+ async ? null, async_ssl ? null, lwt ? null}:
 
 buildOcaml rec {
   name = "conduit";
@@ -13,7 +13,7 @@ buildOcaml rec {
   propagatedBuildInputs = ([ sexplib stringext uri cstruct ipaddr ]
                             ++ stdenv.lib.optional (lwt != null) lwt
                             ++ stdenv.lib.optional (async != null) async
-                            ++ stdenv.lib.optional (async-ssl != null) async-ssl);
+                            ++ stdenv.lib.optional (async_ssl != null) async_ssl);
 
   meta = with stdenv.lib; {
     homepage = https://github.com/mirage/ocaml-conduit;