about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/imagelib/default.nix
blob: 10509f1e75007f88d8434f90f0b95d9f9f1b3f00 (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
{ lib
, fetchurl
, buildDunePackage
, ocaml
, decompress
, stdlib-shims
, alcotest
}:

buildDunePackage rec {
  minimalOCamlVersion = "4.08";
  version = "20221222";
  pname = "imagelib";

  duneVersion = "3";

  src = fetchurl {
    url = "https://github.com/rlepigre/ocaml-imagelib/releases/download/${version}/imagelib-${version}.tbz";
    hash = "sha256-BQ2TVxGlpc6temteK84TKXpx0MtHZSykL/TjKN9xGP0=";
  };

  propagatedBuildInputs = [ decompress stdlib-shims ];

  doCheck = true;
  checkInputs = [ alcotest ];

  meta = {
    description = "Image formats such as PNG and PPM in OCaml";
    homepage = "https://github.com/rlepigre/ocaml-imagelib";
    license = lib.licenses.lgpl3;
    maintainers = [ lib.maintainers.vbgl ];
    mainProgram = "imagetool";
  };
}