ocaml modules: fix some CamelCase and under_scores

This commit is contained in:
Thomas Strobel
2015-09-02 09:14:59 +02:00
parent e80b41e94f
commit 616aa2bdda
36 changed files with 156 additions and 130 deletions

View File

@@ -1,22 +0,0 @@
{stdenv, buildOcaml, fetchurl, async, core, core_extended}:
buildOcaml rec {
name = "async_shell";
version = "109.28.03";
minimumSupportedOcamlVersion = "4.02";
src = fetchurl {
url = "https://github.com/janestreet/async_shell/archive/${version}.tar.gz";
sha256 = "0b4497bea9124c5a665ee58fb0a73c5cbf2f757479df902e6870627196e6c105";
};
propagatedBuildInputs = [ async core core_extended ];
meta = with stdenv.lib; {
homepage = https://github.com/janestreet/async_shell;
description = "Shell helpers for Async";
license = licenses.asl20;
maintainers = [ maintainers.ericbmerritt ];
};
}