summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/camlimages/default.nix
blob: ff344ef6f327ab8650d9a2be78ac6309530cc4d7 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
{stdenv, fetchurl, omake, ocaml, omake_rc1, libtiff, libjpeg, libpng, giflib, findlib, libXpm, freetype, graphicsmagick, ghostscript }:

let
  ocaml_version = (builtins.parseDrvName ocaml.name).version;
  pname = "camlimages";
  version = "4.0.1";
in

stdenv.mkDerivation {
  name = "${pname}-${version}";

  src = fetchurl {
    url = "https://bitbucket.org/camlspotter/camlimages/get/v4.0.1.tar.gz";
    sha256 = "b40237c1505487049799a7af296eb3996b3fa08eab94415546f46d61355747c4";
  };

  buildInputs = [ocaml omake_rc1 findlib graphicsmagick ghostscript libtiff libjpeg libpng giflib freetype libXpm ];

  propagatedbuildInputs = [libtiff libjpeg libpng giflib freetype libXpm ];

  createFindlibDestdir = true;

  preConfigure = ''
    rm ./configure
  '';

  buildPhase = ''
    omake
  '';

  installPhase = ''
    omake install
  '';

  #makeFlags = "BINDIR=$(out)/bin  MANDIR=$(out)/usr/share/man/man1 DYPGENLIBDIR=$(out)/lib/ocaml/${ocaml_version}/site-lib";

  meta = {
    homepage = http://cristal.inria.fr/camlimages;
    description = "Image manipulation library";
    license = stdenv.lib.licenses.gpl2;
#    maintainers = [ stdenv.lib.maintainers.roconnor ];
  };
}