lol

ocaml-typerep: 112.24.00 -> 112.24.00/113.33.03

Split typerep into ppx supporting (modern) and p4 supporting (legacy)

+27 -5
+2 -2
pkgs/development/ocaml-modules/core/default.nix
··· 1 1 {stdenv, buildOcaml, fetchurl, type_conv, 2 2 core_kernel, bin_prot, comparelib, custom_printf, enumerate, 3 3 fieldslib, herelib, pa_bench, pa_test, pa_ounit, 4 - pipebang, sexplib, typerep, variantslib}: 4 + pipebang, sexplib, typerep_p4, variantslib}: 5 5 6 6 buildOcaml rec { 7 7 name = "core"; ··· 19 19 buildInputs = [ pa_bench pa_test pa_ounit ]; 20 20 propagatedBuildInputs = [ type_conv core_kernel bin_prot comparelib 21 21 custom_printf enumerate fieldslib herelib 22 - pipebang sexplib typerep variantslib ]; 22 + pipebang sexplib typerep_p4 variantslib ]; 23 23 24 24 meta = with stdenv.lib; { 25 25 homepage = https://github.com/janestreet/core;
+2 -2
pkgs/development/ocaml-modules/core_kernel/default.nix
··· 1 1 {stdenv, buildOcaml, fetchurl, type_conv, 2 2 bin_prot, comparelib, custom_printf, enumerate, 3 3 fieldslib, herelib, pa_bench, pa_test, pa_ounit, 4 - pipebang, sexplib, typerep, variantslib}: 4 + pipebang, sexplib, typerep_p4, variantslib}: 5 5 6 6 buildOcaml rec { 7 7 name = "core_kernel"; ··· 19 19 buildInputs = [ pa_test pa_ounit ]; 20 20 propagatedBuildInputs = [ type_conv pa_bench bin_prot comparelib custom_printf 21 21 enumerate fieldslib herelib pipebang sexplib 22 - typerep variantslib ]; 22 + typerep_p4 variantslib ]; 23 23 24 24 meta = with stdenv.lib; { 25 25 homepage = https://github.com/janestreet/core_kernel;
+20
pkgs/development/ocaml-modules/janestreet/typerep.nix
··· 1 + {stdenv, buildOcamlJane, type_conv}: 2 + 3 + buildOcamlJane rec { 4 + name = "typerep"; 5 + version = "113.33.03"; 6 + 7 + minimumSupportedOcamlVersion = "4.00"; 8 + 9 + hash = "1ss34nq20vfgx8hwi5sswpmn3my9lvrpdy5dkng746xchwi33ar7"; 10 + 11 + propagatedBuildInputs = [ type_conv ]; 12 + 13 + meta = with stdenv.lib; { 14 + homepage = https://github.com/janestreet/typerep; 15 + description = "Runtime types for OCaml (beta version)"; 16 + license = licenses.asl20; 17 + maintainers = [ maintainers.maurer maintainers.ericbmerritt ]; 18 + }; 19 + 20 + }
+3 -1
pkgs/top-level/all-packages.nix
··· 5470 5470 5471 5471 twt = callPackage ../development/ocaml-modules/twt { }; 5472 5472 5473 - typerep = callPackage ../development/ocaml-modules/typerep { }; 5473 + typerep_p4 = callPackage ../development/ocaml-modules/typerep { }; 5474 5474 5475 5475 utop = callPackage ../development/tools/ocaml/utop { }; 5476 5476 ··· 5555 5555 ppx_variants_conv = callPackage ../development/ocaml-modules/janestreet/ppx-variants-conv.nix {}; 5556 5556 5557 5557 ppx_expect = callPackage ../development/ocaml-modules/janestreet/ppx-expect.nix {}; 5558 + 5559 + typerep = callPackage ../development/ocaml-modules/janestreet/typerep.nix {}; 5558 5560 }; 5559 5561 5560 5562 ocamlPackages = recurseIntoAttrs ocamlPackages_4_01_0;