summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/camlimages/default.nix
blob: def710f3f1b06e67d4f62bf9e490fcf375531c04 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchzip, findlib, jbuilder, ocaml, configurator, cppo, lablgtk }:
stdenv.mkDerivation rec {
  name = "camlimages-${version}";
  version = "5.0.0";
  src = fetchzip {
    url = "https://bitbucket.org/camlspotter/camlimages/get/${version}.tar.gz";
    sha256 = "00qvwxkfnhv93yi1iq7vy3p5lxyi9xigxcq464s4ii6bmp32d998";
  };
  buildInputs = [ findlib jbuilder ocaml configurator cppo lablgtk ];
  buildPhase = "jbuilder build -p camlimages";
  inherit (jbuilder) installPhase;
  
  meta = with stdenv.lib; {
    branch = "5.0";
    homepage = https://bitbucket.org/camlspotter/camlimages;
    description = "OCaml image processing library";
    license = licenses.gpl2;
    maintainers = [ maintainers.vbgl maintainers.mt-caret ];
  };
}