about 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-17 09:23:24 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2022-03-24 09:45:20 +0100
commit3cc1ef775d8e5b4d989fe8e3122f2888cd614600 (patch)
tree645dfec04a6da0958a86c84fa890cf520499c9a1 /pkgs/development/ocaml-modules
parent2d2fd406c4289a1bb60b4f7a7c93a565f002b735 (diff)
downloadnixlib-3cc1ef775d8e5b4d989fe8e3122f2888cd614600.tar
nixlib-3cc1ef775d8e5b4d989fe8e3122f2888cd614600.tar.gz
nixlib-3cc1ef775d8e5b4d989fe8e3122f2888cd614600.tar.bz2
nixlib-3cc1ef775d8e5b4d989fe8e3122f2888cd614600.tar.lz
nixlib-3cc1ef775d8e5b4d989fe8e3122f2888cd614600.tar.xz
nixlib-3cc1ef775d8e5b4d989fe8e3122f2888cd614600.tar.zst
nixlib-3cc1ef775d8e5b4d989fe8e3122f2888cd614600.zip
ocamlPackages.magick: remove at 0.34
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/magick/default.nix34
1 files changed, 0 insertions, 34 deletions
diff --git a/pkgs/development/ocaml-modules/magick/default.nix b/pkgs/development/ocaml-modules/magick/default.nix
deleted file mode 100644
index 87c43fb68693..000000000000
--- a/pkgs/development/ocaml-modules/magick/default.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-{ stdenv, lib, fetchurl, which, pkg-config, ocaml, findlib, imagemagick }:
-
-if lib.versionAtLeast ocaml.version "4.06"
-then throw "magick is not available for OCaml ${ocaml.version}"
-else
-
-stdenv.mkDerivation rec {
-  pname = "ocaml-magick";
-  version = "0.34";
-
-  src = fetchurl {
-    url = "http://www.linux-nantes.org/~fmonnier/OCaml/ImageMagick/ImageMagick/OCaml-ImageMagick-${version}.tgz";
-    sha256 = "0gn9l2qdr8gby2x8c2mb59x1kipb2plr45rbq6ymcxyi0wmzfh3q";
-  };
-
-  nativeBuildInputs = [ which pkg-config ocaml findlib ];
-  buildInputs = [ imagemagick ];
-
-  strictDeps = true;
-
-  createFindlibDestdir = true;
-
-  preConfigure = "substituteInPlace Makefile --replace gcc $CC";
-
-  installTargets = [ "find_install" ];
-
-  meta = {
-    homepage = "http://www.linux-nantes.org/~fmonnier/OCaml/ImageMagick/";
-    description = "ImageMagick Binding for OCaml";
-    license = lib.licenses.mit;
-    platforms = imagemagick.meta.platforms;
-    maintainers = with lib.maintainers; [ vbgl ];
-  };
-}