ocamlPackages.typerep: remove at 112.24.00 & 113.33.03

This commit is contained in:
Vincent Laporte 2021-11-30 10:21:38 +01:00 committed by Vincent Laporte
parent efd2b3f315
commit 74032d767a
3 changed files with 0 additions and 54 deletions

View File

@ -1,20 +0,0 @@
{lib, buildOcamlJane, type_conv}:
buildOcamlJane {
pname = "typerep";
version = "113.33.03";
minimumSupportedOcamlVersion = "4.00";
hash = "1ss34nq20vfgx8hwi5sswpmn3my9lvrpdy5dkng746xchwi33ar7";
propagatedBuildInputs = [ type_conv ];
meta = with lib; {
homepage = "https://github.com/janestreet/typerep";
description = "Runtime types for OCaml (beta version)";
license = licenses.asl20;
maintainers = [ maintainers.maurer maintainers.ericbmerritt ];
};
}

View File

@ -1,25 +0,0 @@
{ lib, buildOcaml, fetchFromGitHub, type_conv }:
buildOcaml rec {
pname = "typerep";
version = "112.24.00";
minimumSupportedOcamlVersion = "4.00";
src = fetchFromGitHub {
owner = "janestreet";
repo = "typerep";
rev = version;
sha256 = "sha256-XCdUZp9Buwmo6qPYAoPD2P/gUgyWHTR7boyecBPKlho=";
};
propagatedBuildInputs = [ type_conv ];
meta = with lib; {
homepage = "https://github.com/janestreet/typerep";
description = "Runtime types for OCaml (beta version)";
license = licenses.asl20;
maintainers = [ maintainers.ericbmerritt ];
};
}

View File

@ -1347,8 +1347,6 @@ let
twt = callPackage ../development/ocaml-modules/twt { };
typerep_p4 = callPackage ../development/ocaml-modules/typerep { };
uchar = callPackage ../development/ocaml-modules/uchar { };
uecc = callPackage ../development/ocaml-modules/uecc { };
@ -1580,13 +1578,6 @@ let
# Core sublibs
typerep =
if lib.versionOlder "4.03" ocaml.version
then janeStreet.typerep
else if lib.versionOlder "4.02" ocaml.version
then callPackage ../development/ocaml-modules/janestreet/typerep.nix {}
else typerep_p4;
sexplib =
if lib.versionOlder "4.03" ocaml.version
then janeStreet.sexplib