about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/sedlex
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2022-05-22 13:10:24 +0200
committerVincent Laporte <vbgl@users.noreply.github.com>2022-05-29 08:48:00 +0200
commitc3e55aa79ac4d856eb8f309ff651173b0ebec7b4 (patch)
tree533d8a1ca04d6b487f17ac1205ace6917d962bc4 /pkgs/development/ocaml-modules/sedlex
parent64da60d311b10c2106dd2e1d05b58e20c6a9a8b3 (diff)
ocamlPackages.sedlex: remove at 1.99.5
Diffstat (limited to 'pkgs/development/ocaml-modules/sedlex')
-rw-r--r--pkgs/development/ocaml-modules/sedlex/default.nix37
1 files changed, 0 insertions, 37 deletions
diff --git a/pkgs/development/ocaml-modules/sedlex/default.nix b/pkgs/development/ocaml-modules/sedlex/default.nix
deleted file mode 100644
index 685d4426cfc30..0000000000000
--- a/pkgs/development/ocaml-modules/sedlex/default.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{ stdenv, lib, fetchFromGitHub, ocaml, findlib, gen, ppx_tools_versioned, ocaml-migrate-parsetree }:
-
-if lib.versionOlder ocaml.version "4.02"
-then throw "sedlex is not available for OCaml ${ocaml.version}"
-else
-
-stdenv.mkDerivation rec {
-  pname = "ocaml${ocaml.version}-sedlex";
-  version = "1.99.5";
-
-  src = fetchFromGitHub {
-    owner = "ocaml-community";
-    repo = "sedlex";
-    rev = "fb84e1766fc4b29e79ec40029ffee5cdb37b392f";
-    sha256 = "sha256-VhzlDTYBFXgKWT69PqZYLuHkiaDwzhmyX2XfaqzHFl4=";
-  };
-
-  nativeBuildInputs = [ ocaml findlib ];
-
-  propagatedBuildInputs = [ gen ocaml-migrate-parsetree ppx_tools_versioned ];
-
-  strictDeps = true;
-
-  buildFlags = [ "all" "opt" ];
-
-  createFindlibDestdir = true;
-
-  dontStrip = true;
-
-  meta = {
-    homepage = "https://github.com/ocaml-community/sedlex";
-    description = "An OCaml lexer generator for Unicode";
-    license = lib.licenses.mit;
-    inherit (ocaml.meta) platforms;
-    maintainers = [ lib.maintainers.vbgl ];
-  };
-}