about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/magick/default.nix
blob: 016c059573b0c85ec0312918e5ad38767bf80d24 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ 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 {
  name = "ocaml-magick-0.34";
  src = fetchurl {
    url = "http://www.linux-nantes.org/~fmonnier/OCaml/ImageMagick/ImageMagick/OCaml-ImageMagick-0.34.tgz";
    sha256 = "0gn9l2qdr8gby2x8c2mb59x1kipb2plr45rbq6ymcxyi0wmzfh3q";
  };

  nativeBuildInputs = [ which pkg-config ];
  buildInputs = [ ocaml findlib imagemagick ];

  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 ];
  };
}