1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/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 10:09:32 +00:00
version = "5.0.0";
2018-03-07 10:09:32 +00:00
src = fetchzip {
url = "https://bitbucket.org/camlspotter/${pname}/get/${version}.tar.gz";
2018-03-07 10:09:32 +00:00
sha256 = "00qvwxkfnhv93yi1iq7vy3p5lxyi9xigxcq464s4ii6bmp32d998";
};
buildInputs = [ configurator cppo lablgtk ];
2018-03-07 14:17:28 +00: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 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
}