nixpkgs/pkgs/development/ocaml-modules/magick/default.nix
sternenseemann 4e42cac49d ocamlPackages: stdenv.lib → lib
This change was produced by searching for remaining occurrences of
stdenv.lib and replacing them manually.

Reference #108938.
2021-01-12 16:33:18 +01:00

31 lines
941 B
Nix

{ stdenv, lib, fetchurl, which, pkgconfig, ocaml, findlib, imagemagick }:
if lib.versionAtLeast ocaml.version "4.06"
then throw "magick is not available for OCaml ${ocaml.version}"
else
stdenv.mkDerivation {
name = "ocaml-magick-0.34";
src = fetchurl {
url = "http://www.linux-nantes.org/~fmonnier/OCaml/ImageMagick/ImageMagick/OCaml-ImageMagick-0.34.tgz";
sha256 = "0gn9l2qdr8gby2x8c2mb59x1kipb2plr45rbq6ymcxyi0wmzfh3q";
};
nativeBuildInputs = [ which pkgconfig ];
buildInputs = [ ocaml findlib imagemagick ];
createFindlibDestdir = true;
preConfigure = "substituteInPlace Makefile --replace gcc $CC";
installTargets = [ "find_install" ];
meta = {
homepage = "http://www.linux-nantes.org/~fmonnier/OCaml/ImageMagick/";
description = "ImageMagick Binding for OCaml";
license = lib.licenses.mit;
platforms = imagemagick.meta.platforms;
maintainers = with lib.maintainers; [ vbgl ];
};
}