Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Adds ocaml-magick-0.34

This package aims to provide the ImageMagick methods to OCaml

Homepage: http://www.linux-nantes.org/~fmonnier/OCaml/ImageMagick/

+26
+24
pkgs/development/ocaml-modules/magick/default.nix
··· 1 + { stdenv, fetchurl, which, pkgconfig, ocaml, findlib, imagemagick }: 2 + 3 + stdenv.mkDerivation { 4 + name = "ocaml-magick-0.34"; 5 + src = fetchurl { 6 + url = http://www.linux-nantes.org/~fmonnier/OCaml/ImageMagick/ImageMagick/OCaml-ImageMagick-0.34.tgz; 7 + sha256 = "0gn9l2qdr8gby2x8c2mb59x1kipb2plr45rbq6ymcxyi0wmzfh3q"; 8 + }; 9 + 10 + nativeBuildInputs = [ which pkgconfig ]; 11 + buildInputs = [ ocaml findlib imagemagick ]; 12 + 13 + createFindlibDestdir = true; 14 + 15 + installTargets = [ "find_install" ]; 16 + 17 + meta = { 18 + homepage = http://www.linux-nantes.org/~fmonnier/OCaml/ImageMagick/; 19 + description = "ImageMagick Binding for OCaml"; 20 + license = stdenv.lib.licenses.mit; 21 + platforms = imagemagick.meta.platforms; 22 + maintainers = with stdenv.lib.maintainers; [ vbgl ]; 23 + }; 24 + }
+2
pkgs/top-level/all-packages.nix
··· 3706 3706 3707 3707 macaque = callPackage ../development/ocaml-modules/macaque { }; 3708 3708 3709 + magick = callPackage ../development/ocaml-modules/magick { }; 3710 + 3709 3711 menhir = callPackage ../development/ocaml-modules/menhir { }; 3710 3712 3711 3713 merlin = callPackage ../development/tools/ocaml/merlin { };