summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2021-12-08 11:45:27 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2021-12-16 11:33:05 +0100
commit2dfa2d76eb41d5195f31fa13208fcc451ffafdd6 (patch)
treec0d1cb4a82e5e538c9751388ffafbcb0c3a24d03
parentMerge pull request #150865 from LeSuisse/21.11-vault-1.8.6 (diff)
downloadnixpkgs-2dfa2d76eb41d5195f31fa13208fcc451ffafdd6.tar.gz
ocamlPackages.faillib: remove at 111.17.00
This is a legacy library for OCaml < 4.06 (cherry picked from commit 7aa74d9a137eb7afc281734382c5bade645e08f4)
-rw-r--r--pkgs/development/ocaml-modules/faillib/default.nix28
-rw-r--r--pkgs/top-level/ocaml-packages.nix2
2 files changed, 0 insertions, 30 deletions
diff --git a/pkgs/development/ocaml-modules/faillib/default.nix b/pkgs/development/ocaml-modules/faillib/default.nix
deleted file mode 100644
index e2d90e06bdb5..000000000000
--- a/pkgs/development/ocaml-modules/faillib/default.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ lib, buildOcaml, fetchurl, ocaml, herelib, camlp4 }:
-
-if lib.versionAtLeast ocaml.version "4.06"
-then throw "faillib-111.17.00 is not available for OCaml ${ocaml.version}"
-else
-
-buildOcaml rec {
- minimumSupportedOcamlVersion = "4.00";
- pname = "faillib";
- version = "111.17.00";
-
- src = fetchurl {
- url = "https://github.com/janestreet/faillib/archive/${version}.tar.gz";
- sha256 = "12dvaxkmgf7yzzvbadcyk1n17llgh6p8qr33867d21npaljy7l9v";
- };
-
- propagatedBuildInputs = [ camlp4 herelib ];
-
- doCheck = true;
- checkPhase = "make test";
-
- meta = with lib; {
- homepage = "https://ocaml.janestreet.com/";
- description = "Library for dealing with failure in OCaml";
- license = licenses.asl20;
- maintainers = [ maintainers.maurer ];
- };
-}
diff --git a/pkgs/top-level/ocaml-packages.nix b/pkgs/top-level/ocaml-packages.nix
index 6f44922032b0..b415d511407a 100644
--- a/pkgs/top-level/ocaml-packages.nix
+++ b/pkgs/top-level/ocaml-packages.nix
@@ -369,8 +369,6 @@ let
facile = callPackage ../development/ocaml-modules/facile { };
- faillib = callPackage ../development/ocaml-modules/faillib { };
-
faraday = callPackage ../development/ocaml-modules/faraday { };
faraday-async = callPackage ../development/ocaml-modules/faraday/async.nix { };