ocamlPackages.textutils: remove at 112.17.00

This is a legacy version for OCaml 4.02
This commit is contained in:
Vincent Laporte 2020-05-13 21:24:57 +02:00 committed by Vincent Laporte
parent 7447395f9d
commit 14a70f542a
3 changed files with 0 additions and 50 deletions

View File

@ -1,18 +0,0 @@
{stdenv, buildOcamlJane,
bin_prot, core, fieldslib, sexplib, typerep, variantslib,
ppx_assert, ppx_bench, ppx_driver, ppx_expect, ppx_inline_test, ppx_jane}:
buildOcamlJane {
name = "textutils";
hash = "0mkjm9b3k7db7zzrq4403v8qbkgqgkjlz120vcbqh6z7d7ql65vb";
propagatedBuildInputs =
[ bin_prot core fieldslib sexplib typerep variantslib
ppx_assert ppx_bench ppx_driver ppx_expect ppx_inline_test ppx_jane ];
meta = with stdenv.lib; {
homepage = "https://github.com/janestreet/textutils";
description = "Text output utilities";
maintainers = [ maintainers.maurer ];
license = licenses.asl20;
};
}

View File

@ -1,23 +0,0 @@
{stdenv, buildOcaml, fetchurl, core_p4, pa_ounit, pa_test, sexplib_p4}:
buildOcaml rec {
name = "textutils";
version = "112.17.00";
minimalSupportedOcamlVersion = "4.02";
src = fetchurl {
url = "https://github.com/janestreet/textutils/archive/${version}.tar.gz";
sha256 = "605d9fde66dc2d777721c936aa521e17169c143efaf9ff29619a7f273a7d0052";
};
buildInputs = [ pa_test ];
propagatedBuildInputs = [ core_p4 pa_ounit sexplib_p4 ];
meta = with stdenv.lib; {
homepage = "https://github.com/janestreet/textutils";
description = "";
license = stdenv.lib.licenses.asl20;
maintainers = [ maintainers.ericbmerritt ];
};
}

View File

@ -748,8 +748,6 @@ let
ulex = callPackage ../development/ocaml-modules/ulex { };
textutils_p4 = callPackage ../development/ocaml-modules/textutils { };
tls = callPackage ../development/ocaml-modules/tls { };
type_conv_108_08_00 = callPackage ../development/ocaml-modules/type_conv/108.08.00.nix { };
@ -1164,13 +1162,6 @@ let
then callPackage ../development/ocaml-modules/janestreet/core.nix {}
else core_p4;
textutils =
if lib.versionOlder "4.03" ocaml.version
then janeStreet.textutils
else if lib.versionOlder "4.02" ocaml.version
then callPackage ../development/ocaml-modules/janestreet/textutils.nix {}
else textutils_p4;
async_kernel =
if lib.versionOlder "4.03" ocaml.version
then janeStreet.async_kernel