2015-07-26 21:33:49 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkgconfig, libtool
|
|
|
|
, bzip2, zlib, libX11, libXext, libXt, fontconfig, freetype, ghostscript, libjpeg
|
|
|
|
, lcms2, openexr, libpng, librsvg, libtiff, libxml2
|
2010-04-30 10:49:33 +00:00
|
|
|
}:
|
2008-05-16 11:05:37 +00:00
|
|
|
|
2010-04-30 10:49:33 +00:00
|
|
|
let
|
2014-10-30 12:34:26 +00:00
|
|
|
|
2015-03-27 18:42:06 +00:00
|
|
|
version = "6.9.1-0";
|
2014-10-30 12:34:26 +00:00
|
|
|
|
|
|
|
arch =
|
|
|
|
if stdenv.system == "i686-linux" then "i686"
|
|
|
|
else if stdenv.system == "x86_64-linux" || stdenv.system == "x86_64-darwin" then "x86-64"
|
|
|
|
else throw "ImageMagick is not supported on this platform.";
|
|
|
|
|
2010-04-30 10:49:33 +00:00
|
|
|
in
|
2014-10-30 12:34:26 +00:00
|
|
|
|
2010-04-30 10:49:33 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-01-29 12:55:23 +00:00
|
|
|
name = "imagemagick-${version}";
|
2008-02-28 18:53:39 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-01-29 22:16:44 +00:00
|
|
|
url = "mirror://imagemagick/releases/ImageMagick-${version}.tar.xz";
|
2015-03-27 18:42:06 +00:00
|
|
|
sha256 = "03lvj6rxv16xk0dpsbzvm2gq5bggkwff9wqbpkq0znihzijpax1j";
|
2008-02-28 18:53:39 +00:00
|
|
|
};
|
|
|
|
|
2013-09-26 17:27:13 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-07-26 21:33:49 +00:00
|
|
|
configureFlags =
|
|
|
|
[ "--with-frozenpaths" ]
|
|
|
|
++ [ "--with-gcc-arch=${arch}" ]
|
|
|
|
++ lib.optional (librsvg != null) "--with-rsvg"
|
|
|
|
++ lib.optionals (ghostscript != null)
|
|
|
|
[ "--with-gs-font-dir=${ghostscript}/share/ghostscript/fonts"
|
|
|
|
"--with-gslib"
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs =
|
|
|
|
[ pkgconfig libtool zlib fontconfig freetype ghostscript libjpeg
|
|
|
|
openexr libpng librsvg libtiff libxml2
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs =
|
|
|
|
[ bzip2 freetype libjpeg libX11 libXext libXt lcms2 ];
|
2015-03-30 05:46:16 +00:00
|
|
|
|
2013-09-15 16:13:26 +00:00
|
|
|
postInstall = ''(cd "$out/include" && ln -s ImageMagick* ImageMagick)'';
|
2008-02-28 18:53:39 +00:00
|
|
|
|
2013-11-12 20:53:37 +00:00
|
|
|
meta = with stdenv.lib; {
|
2013-01-06 21:30:23 +00:00
|
|
|
homepage = http://www.imagemagick.org/;
|
|
|
|
description = "A software suite to create, edit, compose, or convert bitmap images";
|
2013-11-14 15:42:58 +00:00
|
|
|
platforms = platforms.linux ++ [ "x86_64-darwin" ];
|
2015-03-27 22:36:11 +00:00
|
|
|
maintainers = with maintainers; [ the-kenny wkennington ];
|
2008-02-28 18:53:39 +00:00
|
|
|
};
|
2010-04-30 10:49:33 +00:00
|
|
|
}
|