lol

ocaml-textutils: 112.17.00 -> 112.17.00/113.33.03

PPX/P4 split

+23 -3
+2 -2
pkgs/development/ocaml-modules/core_extended/default.nix
··· 1 1 {stdenv, buildOcaml, fetchurl, bin_prot_p4, comparelib, core_p4, custom_printf, 2 - fieldslib_p4, pa_bench, pa_ounit, pipebang, pa_test, textutils, re2_p4, sexplib_p4}: 2 + fieldslib_p4, pa_bench, pa_ounit, pipebang, pa_test, textutils_p4, re2_p4, sexplib_p4}: 3 3 4 4 buildOcaml rec { 5 5 name = "core_extended"; ··· 15 15 hasSharedObjects = true; 16 16 buildInputs = [ pa_bench pa_test pa_ounit ]; 17 17 propagatedBuildInputs = [bin_prot_p4 comparelib core_p4 custom_printf fieldslib_p4 18 - pipebang textutils re2_p4 sexplib_p4 ]; 18 + pipebang textutils_p4 re2_p4 sexplib_p4 ]; 19 19 20 20 meta = with stdenv.lib; { 21 21 homepage = https://github.com/janestreet/core_extended;
+18
pkgs/development/ocaml-modules/janestreet/textutils.nix
··· 1 + {stdenv, buildOcamlJane, 2 + bin_prot, core, fieldslib, sexplib, typerep, variantslib, 3 + ppx_assert, ppx_bench, ppx_driver, ppx_expect, ppx_inline_test, ppx_jane}: 4 + 5 + buildOcamlJane rec { 6 + name = "textutils"; 7 + hash = "0mkjm9b3k7db7zzrq4403v8qbkgqgkjlz120vcbqh6z7d7ql65vb"; 8 + propagatedBuildInputs = 9 + [ bin_prot core fieldslib sexplib typerep variantslib 10 + ppx_assert ppx_bench ppx_driver ppx_expect ppx_inline_test ppx_jane ]; 11 + 12 + meta = with stdenv.lib; { 13 + homepage = https://github.com/janestreet/textutils; 14 + description = "Text output utilities"; 15 + maintainers = [ maintainers.maurer ]; 16 + license = licenses.asl20; 17 + }; 18 + }
+3 -1
pkgs/top-level/all-packages.nix
··· 5387 5387 camlp5 = camlp5_transitional; 5388 5388 }; 5389 5389 5390 - textutils = callPackage ../development/ocaml-modules/textutils { }; 5390 + textutils_p4 = callPackage ../development/ocaml-modules/textutils { }; 5391 5391 5392 5392 type_conv_108_08_00 = callPackage ../development/ocaml-modules/type_conv/108.08.00.nix { }; 5393 5393 type_conv_109_60_01 = callPackage ../development/ocaml-modules/type_conv/109.60.01.nix { }; ··· 5575 5575 core = callPackage ../development/ocaml-modules/janestreet/core.nix {}; 5576 5576 5577 5577 re2 = callPackage ../development/ocaml-modules/janestreet/re2.nix {}; 5578 + 5579 + textutils = callPackage ../development/ocaml-modules/janestreet/textutils.nix {}; 5578 5580 }; 5579 5581 5580 5582 ocamlPackages = recurseIntoAttrs ocamlPackages_4_01_0;