rename ocaml_typeconv to type_conv

The actual name of the package is type_conv
(https://github.com/janestreet/type_conv). Having it named
ocaml_typeconv adds a verbosity that isn't required and actually makes
the package harder to find.
This commit is contained in:
Eric Merritt
2015-05-24 12:32:45 -07:00
parent 82e098fd93
commit 8751d1ea1a
9 changed files with 23 additions and 26 deletions
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, ocaml, findlib, ocaml_typeconv, camlp4 }:
{ stdenv, fetchurl, ocaml, findlib, type_conv, camlp4 }:
assert stdenv.lib.versionOlder "4.00" (stdenv.lib.getVersion ocaml);
@@ -11,7 +11,7 @@ stdenv.mkDerivation {
};
buildInputs = [ ocaml findlib ];
propagatedBuildInputs = [ ocaml_typeconv camlp4 ];
propagatedBuildInputs = [ type_conv camlp4 ];
createFindlibDestdir = true;