2018-12-07 04:22:10 +00:00
|
|
|
{ lib, fetchzip, buildDunePackage, configurator, cppo, lablgtk }:
|
2018-11-05 10:21:46 +00:00
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "camlimages";
|
2018-12-07 04:22:10 +00:00
|
|
|
version = "5.0.1";
|
2018-11-05 10:21:46 +00:00
|
|
|
|
2018-03-07 10:09:32 +00:00
|
|
|
src = fetchzip {
|
2018-11-05 10:21:46 +00:00
|
|
|
url = "https://bitbucket.org/camlspotter/${pname}/get/${version}.tar.gz";
|
2018-12-07 04:22:10 +00:00
|
|
|
sha256 = "1figrgzsdrrxzfza0bhz0225g1rwawdf5x2m9lw2kzrdb815khs5";
|
2018-03-07 10:09:32 +00:00
|
|
|
};
|
2018-11-05 10:21:46 +00:00
|
|
|
|
|
|
|
buildInputs = [ configurator cppo lablgtk ];
|
|
|
|
|
2018-12-07 04:22:10 +00:00
|
|
|
meta = with lib; {
|
2018-03-07 14:17:28 +00:00
|
|
|
branch = "5.0";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://bitbucket.org/camlspotter/camlimages";
|
2018-03-07 14:17:28 +00:00
|
|
|
description = "OCaml image processing library";
|
|
|
|
license = licenses.gpl2;
|
2018-03-07 14:39:47 +00:00
|
|
|
maintainers = [ maintainers.vbgl maintainers.mt-caret ];
|
2018-03-07 14:17:28 +00:00
|
|
|
};
|
2018-03-07 10:09:32 +00:00
|
|
|
}
|