2015-07-26 23:33:49 +02:00
|
|
|
{ lib, stdenv, fetchurl, pkgconfig, libtool
|
|
|
|
, bzip2, zlib, libX11, libXext, libXt, fontconfig, freetype, ghostscript, libjpeg
|
|
|
|
, lcms2, openexr, libpng, librsvg, libtiff, libxml2
|
2010-04-30 12:49:33 +02:00
|
|
|
}:
|
2008-05-16 13:05:37 +02:00
|
|
|
|
2010-04-30 12:49:33 +02:00
|
|
|
let
|
2014-10-30 13:34:26 +01: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 12:49:33 +02:00
|
|
|
in
|
2014-10-30 13:34:26 +01:00
|
|
|
|
2010-04-30 12:49:33 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2015-01-29 13:55:23 +01:00
|
|
|
name = "imagemagick-${version}";
|
2015-09-01 12:31:43 +02:00
|
|
|
version = "6.9.2-0";
|
2008-02-28 19:53:39 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-01-29 23:16:44 +01:00
|
|
|
url = "mirror://imagemagick/releases/ImageMagick-${version}.tar.xz";
|
2015-09-01 12:31:43 +02:00
|
|
|
sha256 = "17ir8bw1j7g7srqmsz3rx780sgnc21zfn0kwyj78iazrywldx8h7";
|
2008-02-28 19:53:39 +01:00
|
|
|
};
|
|
|
|
|
2015-07-26 23:39:24 +02:00
|
|
|
outputs = [ "out" "doc" ];
|
|
|
|
|
2013-09-26 19:27:13 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-07-26 23:33:49 +02: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 07:46:16 +02:00
|
|
|
|
2015-09-03 11:52:13 +02:00
|
|
|
postInstall = ''
|
|
|
|
(cd "$out/include" && ln -s ImageMagick* ImageMagick)
|
|
|
|
'' + lib.optionalString (ghostscript != null) ''
|
|
|
|
for la in $out/lib/*.la; do
|
|
|
|
sed 's|-lgs|-L${ghostscript}/lib -lgs|' -i $la
|
|
|
|
done
|
|
|
|
'';
|
2008-02-28 19:53:39 +01:00
|
|
|
|
2013-11-12 21:53:37 +01:00
|
|
|
meta = with stdenv.lib; {
|
2013-01-06 22:30:23 +01:00
|
|
|
homepage = http://www.imagemagick.org/;
|
|
|
|
description = "A software suite to create, edit, compose, or convert bitmap images";
|
2013-11-14 16:42:58 +01:00
|
|
|
platforms = platforms.linux ++ [ "x86_64-darwin" ];
|
2015-03-27 23:36:11 +01:00
|
|
|
maintainers = with maintainers; [ the-kenny wkennington ];
|
2008-02-28 19:53:39 +01:00
|
|
|
};
|
2010-04-30 12:49:33 +02:00
|
|
|
}
|