summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2022-03-28 07:21:51 +0200
committerVincent Laporte <vbgl@users.noreply.github.com>2022-04-03 21:36:52 +0200
commit1ddbc47dc7439f50d12e8daabd01efaa78320e39 (patch)
treeb37daa61b13c02bad62c5aa04157af8742d9ed0a /pkgs/development/ocaml-modules
parent5d49ba29282597f1536cec84b9af5347294e78ee (diff)
downloadnixpkgs-1ddbc47dc7439f50d12e8daabd01efaa78320e39.tar
nixpkgs-1ddbc47dc7439f50d12e8daabd01efaa78320e39.tar.gz
nixpkgs-1ddbc47dc7439f50d12e8daabd01efaa78320e39.tar.bz2
nixpkgs-1ddbc47dc7439f50d12e8daabd01efaa78320e39.tar.lz
nixpkgs-1ddbc47dc7439f50d12e8daabd01efaa78320e39.tar.xz
nixpkgs-1ddbc47dc7439f50d12e8daabd01efaa78320e39.tar.zst
nixpkgs-1ddbc47dc7439f50d12e8daabd01efaa78320e39.zip
ocamlPackages.type_conv: remove at 108.08.00, 109.60.01, 113.00.02
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/type_conv/108.08.00.nix31
-rw-r--r--pkgs/development/ocaml-modules/type_conv/109.60.01.nix32
-rw-r--r--pkgs/development/ocaml-modules/type_conv/112.01.01.nix26
3 files changed, 0 insertions, 89 deletions
diff --git a/pkgs/development/ocaml-modules/type_conv/108.08.00.nix b/pkgs/development/ocaml-modules/type_conv/108.08.00.nix
deleted file mode 100644
index fb3977223f7..00000000000
--- a/pkgs/development/ocaml-modules/type_conv/108.08.00.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{ lib, stdenv, fetchurl, ocaml, findlib, camlp4 }:
-
-if !lib.versionAtLeast ocaml.version "3.12"
-  || lib.versionAtLeast ocaml.version "4.03"
-then throw "type_conv-108.08.00 is not available for OCaml ${ocaml.version}" else
-
-stdenv.mkDerivation rec {
-  pname = "ocaml-type_conv";
-  version = "108.08.00";
-
-  src = fetchurl {
-    url = "https://ocaml.janestreet.com/ocaml-core/${version}/individual/type_conv-${version}.tar.gz";
-    sha256 = "08ysikwwp69zvc147lzzg79nwlrzrk738rj0ggcfadi8h5il42sl";
-  };
-
-  nativeBuildInputs = [ ocaml findlib ];
-  buildInputs = [ camlp4 ];
-
-  strictDeps = true;
-
-  createFindlibDestdir = true;
-
-  meta = with lib; {
-    homepage = "https://ocaml.janestreet.com/";
-    description = "Support library for OCaml preprocessor type conversions";
-    license = licenses.asl20;
-    branch = "108";
-    platforms = ocaml.meta.platforms or [ ];
-    maintainers = with maintainers; [ maggesi ];
-  };
-}
diff --git a/pkgs/development/ocaml-modules/type_conv/109.60.01.nix b/pkgs/development/ocaml-modules/type_conv/109.60.01.nix
deleted file mode 100644
index 1f6500c6ed1..00000000000
--- a/pkgs/development/ocaml-modules/type_conv/109.60.01.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ stdenv, lib, fetchFromGitHub, ocaml, findlib, camlp4 }:
-
-if !lib.versionAtLeast ocaml.version "4.00"
-  || lib.versionAtLeast ocaml.version "4.03"
-then throw "type_conv-109.60.01 is not available for OCaml ${ocaml.version}" else
-
-stdenv.mkDerivation rec {
-  pname = "ocaml-type_conv";
-  version = "109.60.01";
-
-  src = fetchFromGitHub {
-    owner = "janestreet";
-    repo = "type_conv";
-    rev = version;
-    sha256 = "sha256-8Oz/fPL3+RghyxQp5u6seSEdf0BgfP6XNcsMYty0rNs=";
-  };
-
-  nativeBuildInputs = [ ocaml findlib ];
-  buildInputs = [ camlp4 ];
-
-  strictDeps = true;
-
-  createFindlibDestdir = true;
-
-  meta = {
-    homepage = "http://forge.ocamlcore.org/projects/type-conv/";
-    description = "Support library for OCaml preprocessor type conversions";
-    license = lib.licenses.lgpl21;
-    platforms = ocaml.meta.platforms or [ ];
-    maintainers = with lib.maintainers; [ maggesi ];
-  };
-}
diff --git a/pkgs/development/ocaml-modules/type_conv/112.01.01.nix b/pkgs/development/ocaml-modules/type_conv/112.01.01.nix
deleted file mode 100644
index 468b872ec3d..00000000000
--- a/pkgs/development/ocaml-modules/type_conv/112.01.01.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{ lib, fetchFromGitHub, buildOcaml, camlp4}:
-
-buildOcaml rec {
-  minimumSupportedOcamlVersion = "4.02";
-
-  pname = "type_conv";
-  version = "113.00.02";
-
-  src = fetchFromGitHub {
-    owner = "janestreet";
-    repo = "type_conv";
-    rev = version;
-    sha256 = "sha256-HzH0hnceCQ2kDRATjl+tfKk3XSBDsGnPzVUGYpDQUmU=";
-  };
-
-  strictDeps = true;
-
-  buildInputs = [ camlp4 ];
-
-  meta = {
-    homepage = "https://github.com/janestreet/type_conv/";
-    description = "Support library for preprocessor type conversions";
-    license = lib.licenses.asl20;
-    maintainers = with lib.maintainers; [ maggesi ericbmerritt ];
-  };
-}