summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/core_kernel
diff options
context:
space:
mode:
authorMatthew Maurer <matthew.r.maurer@gmail.com>2016-09-13 19:21:04 -0400
committerMatthew Maurer <matthew.r.maurer@gmail.com>2016-09-14 02:35:13 -0400
commitd97392c39ad9f6dbd37325e55fa53d3f647a8a78 (patch)
treef7191f87535d60f8d24e69fb1bf905c87e19a70c /pkgs/development/ocaml-modules/core_kernel
parent794b4fbfb9e0e8c866f266facefb7dcde4a7fefd (diff)
downloadnixlib-d97392c39ad9f6dbd37325e55fa53d3f647a8a78.tar
nixlib-d97392c39ad9f6dbd37325e55fa53d3f647a8a78.tar.gz
nixlib-d97392c39ad9f6dbd37325e55fa53d3f647a8a78.tar.bz2
nixlib-d97392c39ad9f6dbd37325e55fa53d3f647a8a78.tar.lz
nixlib-d97392c39ad9f6dbd37325e55fa53d3f647a8a78.tar.xz
nixlib-d97392c39ad9f6dbd37325e55fa53d3f647a8a78.tar.zst
nixlib-d97392c39ad9f6dbd37325e55fa53d3f647a8a78.zip
ocaml-typerep: 112.24.00 -> 112.24.00/113.33.03
Split typerep into ppx supporting (modern) and p4 supporting (legacy)
Diffstat (limited to 'pkgs/development/ocaml-modules/core_kernel')
-rw-r--r--pkgs/development/ocaml-modules/core_kernel/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/core_kernel/default.nix b/pkgs/development/ocaml-modules/core_kernel/default.nix
index 0fed12b195d6..9be55061b006 100644
--- a/pkgs/development/ocaml-modules/core_kernel/default.nix
+++ b/pkgs/development/ocaml-modules/core_kernel/default.nix
@@ -1,7 +1,7 @@
 {stdenv, buildOcaml, fetchurl, type_conv,
  bin_prot, comparelib, custom_printf, enumerate,
  fieldslib, herelib, pa_bench, pa_test, pa_ounit,
- pipebang, sexplib, typerep, variantslib}:
+ pipebang, sexplib, typerep_p4, variantslib}:
 
 buildOcaml rec {
   name = "core_kernel";
@@ -19,7 +19,7 @@ buildOcaml rec {
   buildInputs = [ pa_test pa_ounit ];
   propagatedBuildInputs = [ type_conv pa_bench bin_prot comparelib custom_printf
                             enumerate fieldslib herelib pipebang sexplib
-                            typerep variantslib ];
+                            typerep_p4 variantslib ];
 
   meta = with stdenv.lib; {
     homepage = https://github.com/janestreet/core_kernel;