a13cdfe520
To keep this for the future we also strictDeps where possible, including for janePackages, topkg, oasis and ocamlbuild. This makes some closures significantly smaller and makes cross compilation easier
33 lines
725 B
Nix
33 lines
725 B
Nix
{ lib, fetchFromGitLab, buildDunePackage, dune-configurator, cppo
|
|
, graphics, lablgtk, stdio
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "camlimages";
|
|
version = "5.0.4";
|
|
|
|
useDune2 = true;
|
|
|
|
minimumOCamlVersion = "4.07";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "camlspotter";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1m2c76ghisg73dikz2ifdkrbkgiwa0hcmp21f2fm2rkbf02rq3f4";
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [ cppo ];
|
|
buildInputs = [ dune-configurator graphics lablgtk stdio ];
|
|
|
|
meta = with lib; {
|
|
branch = "5.0";
|
|
inherit (src.meta) homepage;
|
|
description = "OCaml image processing library";
|
|
license = licenses.lgpl2;
|
|
maintainers = [ maintainers.vbgl maintainers.mt-caret ];
|
|
};
|
|
}
|