about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-06-19 07:41:05 +0300
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2023-06-19 07:41:05 +0300
commit14c735ccf7cbd829c48b77eb02f226fb3972b53d (patch)
tree251adf392b7ea210774753247494438fec0eb836 /pkgs/development/ocaml-modules
parent9d9f00c967fcdd2a523f3db83a68c426ad89b1eb (diff)
downloadnixlib-14c735ccf7cbd829c48b77eb02f226fb3972b53d.tar
nixlib-14c735ccf7cbd829c48b77eb02f226fb3972b53d.tar.gz
nixlib-14c735ccf7cbd829c48b77eb02f226fb3972b53d.tar.bz2
nixlib-14c735ccf7cbd829c48b77eb02f226fb3972b53d.tar.lz
nixlib-14c735ccf7cbd829c48b77eb02f226fb3972b53d.tar.xz
nixlib-14c735ccf7cbd829c48b77eb02f226fb3972b53d.tar.zst
nixlib-14c735ccf7cbd829c48b77eb02f226fb3972b53d.zip
ocamlPackages.camomile_0_8_2: drop
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/camomile/0.8.2.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/pkgs/development/ocaml-modules/camomile/0.8.2.nix b/pkgs/development/ocaml-modules/camomile/0.8.2.nix
deleted file mode 100644
index 502e517b2a9d..000000000000
--- a/pkgs/development/ocaml-modules/camomile/0.8.2.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{stdenv, lib, fetchurl, ocaml, findlib, camlp4}:
-
-if lib.versionAtLeast ocaml.version "4.05"
-then throw "camomile-0.8.2 is not available for OCaml ${ocaml.version}"
-else
-
-stdenv.mkDerivation rec {
-  pname = "camomile";
-  version = "0.8.2";
-
-  src = fetchurl {
-    url = "mirror://sourceforge/camomile/camomile-${version}.tar.bz2";
-    sha256 = "0x43pjxx70kgip86mmdn08s97k4qzdqc8i79xfyyx28smy1bsa00";
-  };
-
-  nativeBuildInputs = [ ocaml findlib camlp4 ];
-
-  strictDeps = true;
-
-  createFindlibDestdir = true;
-
-  meta = {
-    homepage = "http://camomile.sourceforge.net/";
-    description = "A comprehensive Unicode library for OCaml";
-    license = lib.licenses.lgpl21;
-    branch = "0.8.2";
-    inherit (ocaml.meta) platforms;
-    maintainers = [
-      lib.maintainers.maggesi
-    ];
-  };
-}