summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/sexplib/108.08.00.nix
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/ocaml-modules/sexplib/108.08.00.nix
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/ocaml-modules/sexplib/108.08.00.nix')
-rw-r--r--pkgs/development/ocaml-modules/sexplib/108.08.00.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/sexplib/108.08.00.nix b/pkgs/development/ocaml-modules/sexplib/108.08.00.nix
index bde9c2713715..dd9e89bcef70 100644
--- a/pkgs/development/ocaml-modules/sexplib/108.08.00.nix
+++ b/pkgs/development/ocaml-modules/sexplib/108.08.00.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, ocaml, findlib, typeconv, camlp4}:
+{stdenv, fetchurl, ocaml, findlib, type_conv, camlp4}:
 
 let
   ocaml_version = (builtins.parseDrvName ocaml.name).version;
@@ -15,7 +15,7 @@ stdenv.mkDerivation {
   };
 
   buildInputs = [ocaml findlib];
-  propagatedBuildInputs = [typeconv camlp4];
+  propagatedBuildInputs = [type_conv camlp4];
 
   createFindlibDestdir = true;