Revert "ocaml-modules: fix naming: "_" -> "-""

This commit is contained in:
ts468
2015-09-06 21:15:10 +02:00
parent a9dab9df61
commit 054be41e04
36 changed files with 130 additions and 156 deletions
@@ -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;