nixpkgs/pkgs/development/ocaml-modules/camlimages/default.nix

22 lines
617 B
Nix

{ stdenv, fetchzip, buildDunePackage, configurator, cppo, lablgtk }:
buildDunePackage rec {
pname = "camlimages";
version = "5.0.0";
src = fetchzip {
url = "https://bitbucket.org/camlspotter/${pname}/get/${version}.tar.gz";
sha256 = "00qvwxkfnhv93yi1iq7vy3p5lxyi9xigxcq464s4ii6bmp32d998";
};
buildInputs = [ configurator cppo lablgtk ];
meta = with stdenv.lib; {
branch = "5.0";
homepage = https://bitbucket.org/camlspotter/camlimages;
description = "OCaml image processing library";
license = licenses.gpl2;
maintainers = [ maintainers.vbgl maintainers.mt-caret ];
};
}