Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

ocamlPackages.camlimages_4_1_2: remove at 4.1.2

This was only used for glsurf which no longer needs it.

authored by

sternenseemann and committed by
Alyssa Ross
17dc76ca ba01fb86

-44
-37
pkgs/development/ocaml-modules/camlimages/4.1.2.nix
··· 1 - { lib, stdenv, fetchFromGitLab, fetchpatch, omake, ocaml, findlib 2 - , graphicsmagick, ghostscript 3 - , freetype, giflib, libjpeg, libpng, libtiff, libXpm 4 - }: 5 - 6 - stdenv.mkDerivation rec { 7 - pname = "camlimages"; 8 - version = "4.1.2"; 9 - 10 - src = fetchFromGitLab { 11 - owner = "camlspotter"; 12 - repo = "camlimages"; 13 - rev = "98661d507e12ce91a51295a50f244cb8265b4439"; # no tag 14 - sha256 = "0kpxj8wm2m17wjq217jzjpfgv1d7sp4w1yd1gi8ipn5rj4sid2j8"; 15 - }; 16 - 17 - buildInputs = [ ocaml omake findlib graphicsmagick ghostscript ]; 18 - propagatedBuildInputs = [ libtiff libjpeg libpng giflib freetype libXpm ]; 19 - 20 - createFindlibDestdir = true; 21 - 22 - buildPhase = '' 23 - omake 24 - ''; 25 - 26 - installPhase = '' 27 - omake install 28 - ''; 29 - 30 - meta = with lib; { 31 - branch = "4.1"; 32 - homepage = "https://gitlab.com/camlspotter/camlimages"; 33 - description = "OCaml image processing library"; 34 - license = licenses.lgpl2; 35 - maintainers = [ maintainers.vbgl ]; 36 - }; 37 - }
-7
pkgs/top-level/ocaml-packages.nix
··· 118 118 then callPackage ../development/ocaml-modules/camomile { } 119 119 else callPackage ../development/ocaml-modules/camomile/0.8.5.nix { }; 120 120 121 - camlimages_4_1_2 = 122 - if lib.versionOlder "4.02" ocaml.version 123 - then null 124 - else callPackage ../development/ocaml-modules/camlimages/4.1.2.nix { 125 - libpng = pkgs.libpng12; 126 - }; 127 - 128 121 camlimages_4_2_4 = callPackage ../development/ocaml-modules/camlimages/4.2.4.nix { }; 129 122 130 123 camlimages = callPackage ../development/ocaml-modules/camlimages { };