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

22 lines
617 B
Nix
Raw Normal View History

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