about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/imagelib/default.nix
blob: 77b18f0ce3a923749f13321128a07eed90b4021f (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
{ stdenv, fetchFromGitHub, which, ocaml, findlib, ocamlbuild, decompress }:

stdenv.mkDerivation rec {
  version = "20171028";
  name = "ocaml${ocaml.version}-imagelib-${version}";
  src = fetchFromGitHub {
    owner = "rlepigre";
    repo = "ocaml-imagelib";
    rev = "ocaml-imagelib_${version}";
    sha256 = "1frkrgcrv4ybdmqcfxpfsywx0hm1arxgxp32n8kzky6qip1g0zxf";
  };

  buildInputs = [ which ocaml findlib ocamlbuild ];

  propagatedBuildInputs = [ decompress ];

  createFindlibDestdir = true;

  meta = {
    description = "Image formats such as PNG and PPM in OCaml";
    license = stdenv.lib.licenses.lgpl3;
    maintainers = [ stdenv.lib.maintainers.vbgl ];
    inherit (src.meta) homepage;
    inherit (ocaml.meta) platforms;
  };
}