about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-04-27 09:56:50 +0200
committerAlyssa Ross <hi@alyssa.is>2021-06-23 14:52:32 +0000
commit17dc76ca7c280e6ec46e5fd27ba059ed269bc6cd (patch)
tree37c60f71c2c9ab627580363cc2a4886a44be2794 /pkgs/development/ocaml-modules
parentba01fb866ab52147f62eb68ffab89f73e32b5232 (diff)
downloadnixlib-17dc76ca7c280e6ec46e5fd27ba059ed269bc6cd.tar
nixlib-17dc76ca7c280e6ec46e5fd27ba059ed269bc6cd.tar.gz
nixlib-17dc76ca7c280e6ec46e5fd27ba059ed269bc6cd.tar.bz2
nixlib-17dc76ca7c280e6ec46e5fd27ba059ed269bc6cd.tar.lz
nixlib-17dc76ca7c280e6ec46e5fd27ba059ed269bc6cd.tar.xz
nixlib-17dc76ca7c280e6ec46e5fd27ba059ed269bc6cd.tar.zst
nixlib-17dc76ca7c280e6ec46e5fd27ba059ed269bc6cd.zip
ocamlPackages.camlimages_4_1_2: remove at 4.1.2
This was only used for glsurf which no longer needs it.
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/camlimages/4.1.2.nix37
1 files changed, 0 insertions, 37 deletions
diff --git a/pkgs/development/ocaml-modules/camlimages/4.1.2.nix b/pkgs/development/ocaml-modules/camlimages/4.1.2.nix
deleted file mode 100644
index dba303afdf24..000000000000
--- a/pkgs/development/ocaml-modules/camlimages/4.1.2.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{ lib, stdenv, fetchFromGitLab, fetchpatch, omake, ocaml, findlib
-, graphicsmagick, ghostscript
-, freetype, giflib, libjpeg, libpng, libtiff, libXpm
-}:
-
-stdenv.mkDerivation rec {
-  pname = "camlimages";
-  version = "4.1.2";
-
-  src = fetchFromGitLab {
-    owner = "camlspotter";
-    repo = "camlimages";
-    rev = "98661d507e12ce91a51295a50f244cb8265b4439"; # no tag
-    sha256 = "0kpxj8wm2m17wjq217jzjpfgv1d7sp4w1yd1gi8ipn5rj4sid2j8";
-  };
-
-  buildInputs = [ ocaml omake findlib graphicsmagick ghostscript ];
-  propagatedBuildInputs = [ libtiff libjpeg libpng giflib freetype libXpm ];
-
-  createFindlibDestdir = true;
-
-  buildPhase = ''
-    omake
-  '';
-
-  installPhase = ''
-    omake install
-  '';
-
-  meta = with lib; {
-    branch = "4.1";
-    homepage = "https://gitlab.com/camlspotter/camlimages";
-    description = "OCaml image processing library";
-    license = licenses.lgpl2;
-    maintainers = [ maintainers.vbgl ];
-  };
-}