about summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml
diff options
context:
space:
mode:
authorEric Merritt <eric@afiniate.com>2015-05-24 10:45:01 -0700
committerEric Merritt <eric@afiniate.com>2015-05-24 12:32:45 -0700
commit8751d1ea1a43d877ebce2b57b2ce2f1bb1087593 (patch)
treeca4fa32a5a3672335b409402e1363e2c306b9184 /pkgs/development/tools/ocaml
parent82e098fd9319fe4e23c98819972fa3a0206442bf (diff)
downloadnixlib-8751d1ea1a43d877ebce2b57b2ce2f1bb1087593.tar
nixlib-8751d1ea1a43d877ebce2b57b2ce2f1bb1087593.tar.gz
nixlib-8751d1ea1a43d877ebce2b57b2ce2f1bb1087593.tar.bz2
nixlib-8751d1ea1a43d877ebce2b57b2ce2f1bb1087593.tar.lz
nixlib-8751d1ea1a43d877ebce2b57b2ce2f1bb1087593.tar.xz
nixlib-8751d1ea1a43d877ebce2b57b2ce2f1bb1087593.tar.zst
nixlib-8751d1ea1a43d877ebce2b57b2ce2f1bb1087593.zip
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.
Diffstat (limited to 'pkgs/development/tools/ocaml')
-rw-r--r--pkgs/development/tools/ocaml/oasis/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/ocaml/oasis/default.nix b/pkgs/development/tools/ocaml/oasis/default.nix
index 29507f49c186..e823466f4174 100644
--- a/pkgs/development/tools/ocaml/oasis/default.nix
+++ b/pkgs/development/tools/ocaml/oasis/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, ocaml, findlib, ocaml_data_notation, ocaml_typeconv, camlp4,
+{stdenv, fetchurl, ocaml, findlib, ocaml_data_notation, type_conv, camlp4,
  ocamlmod, ocamlify, ounit, expect}:
 
 stdenv.mkDerivation {
@@ -13,7 +13,7 @@ stdenv.mkDerivation {
 
   buildInputs =
     [
-      ocaml findlib ocaml_typeconv ocamlmod ocamlify ounit camlp4
+      ocaml findlib type_conv ocamlmod ocamlify ounit camlp4
     ];
 
   propagatedBuildInputs = [ ocaml_data_notation ];