depot/third_party/nixpkgs/pkgs/development/ocaml-modules/imagelib/default.nix
Default email a0cb138ada Project import generated by Copybara.
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
2023-02-02 18:25:31 +00:00

29 lines
769 B
Nix

{ 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;
nativeCheckInputs = [ 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";
};
}