2016-02-11 11:57:22 +00:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch, pkgconfig, libtool
|
2015-07-26 21:33:49 +00:00
|
|
|
, bzip2, zlib, libX11, libXext, libXt, fontconfig, freetype, ghostscript, libjpeg
|
2016-05-03 10:19:15 +00:00
|
|
|
, lcms2, openexr, libpng, librsvg, libtiff, libxml2, openjpeg, libwebp
|
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
|
|
|
arch =
|
|
|
|
if stdenv.system == "i686-linux" then "i686"
|
|
|
|
else if stdenv.system == "x86_64-linux" || stdenv.system == "x86_64-darwin" then "x86-64"
|
2016-02-14 20:13:51 +00:00
|
|
|
else if stdenv.system == "armv7l-linux" then "armv7l"
|
2014-10-30 12:34:26 +00:00
|
|
|
else throw "ImageMagick is not supported on this platform.";
|
2016-02-11 11:57:22 +00:00
|
|
|
|
|
|
|
cfg = {
|
2016-05-05 06:18:44 +00:00
|
|
|
version = "6.9.3-9";
|
|
|
|
sha256 = "0q19jgn1iv7zqrw8ibxp4z57iihrc9kyb09k2wnspcacs6vrvinf";
|
2016-02-11 11:57:22 +00:00
|
|
|
patches = [];
|
|
|
|
}
|
|
|
|
# Freeze version on mingw so we don't need to port the patch too often.
|
|
|
|
// lib.optionalAttrs (stdenv.cross.libc or null == "msvcrt") {
|
|
|
|
version = "6.9.2-0";
|
|
|
|
sha256 = "17ir8bw1j7g7srqmsz3rx780sgnc21zfn0kwyj78iazrywldx8h7";
|
|
|
|
patches = (fetchpatch {
|
|
|
|
name = "mingw-build.patch";
|
|
|
|
url = "https://raw.githubusercontent.com/Alexpux/MINGW-packages/"
|
|
|
|
+ "01ca03b2a4ef/mingw-w64-imagemagick/002-build-fixes.patch";
|
|
|
|
sha256 = "1pypszlcx2sf7wfi4p37w1y58ck2r8cd5b2wrrwr9rh87p7fy1c0";
|
|
|
|
});
|
|
|
|
};
|
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}";
|
2016-02-11 11:57:22 +00:00
|
|
|
inherit (cfg) version;
|
2008-02-28 18:53:39 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-01-20 08:02:07 +00:00
|
|
|
urls = [
|
|
|
|
"mirror://imagemagick/releases/ImageMagick-${version}.tar.xz"
|
|
|
|
# the original source above removes tarballs quickly
|
|
|
|
"http://distfiles.macports.org/ImageMagick/ImageMagick-${version}.tar.xz"
|
|
|
|
];
|
2016-02-11 11:57:22 +00:00
|
|
|
inherit (cfg) sha256;
|
2008-02-28 18:53:39 +00:00
|
|
|
};
|
|
|
|
|
2016-05-05 06:18:44 +00:00
|
|
|
patches = [ ./imagetragick.patch ] ++ cfg.patches;
|
2008-02-28 18:53:39 +00:00
|
|
|
|
2015-07-26 21:39:24 +00:00
|
|
|
outputs = [ "out" "doc" ];
|
|
|
|
|
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"
|
2016-02-11 11:57:22 +00:00
|
|
|
]
|
|
|
|
++ lib.optionals (stdenv.cross.libc or null == "msvcrt")
|
|
|
|
[ "--enable-static" "--disable-shared" ] # due to libxml2 being without DLLs ATM
|
|
|
|
;
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig libtool ];
|
2015-07-26 21:33:49 +00:00
|
|
|
|
|
|
|
buildInputs =
|
2016-02-11 11:57:22 +00:00
|
|
|
[ zlib fontconfig freetype ghostscript
|
|
|
|
libpng libtiff libxml2
|
|
|
|
]
|
|
|
|
++ lib.optionals (stdenv.cross.libc or null != "msvcrt")
|
2016-05-05 06:18:44 +00:00
|
|
|
[ openexr librsvg openjpeg ]
|
2016-02-11 11:57:22 +00:00
|
|
|
;
|
2015-07-26 21:33:49 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs =
|
2016-02-11 11:57:22 +00:00
|
|
|
[ bzip2 freetype libjpeg lcms2 ]
|
|
|
|
++ lib.optionals (stdenv.cross.libc or null != "msvcrt")
|
2016-05-05 06:18:44 +00:00
|
|
|
[ libX11 libXext libXt libwebp ]
|
2016-02-11 11:57:22 +00:00
|
|
|
;
|
2015-03-30 05:46:16 +00:00
|
|
|
|
2015-09-03 09:52:13 +00:00
|
|
|
postInstall = ''
|
2016-05-03 10:19:15 +00:00
|
|
|
|
2015-09-03 09:52:13 +00:00
|
|
|
(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 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
|
|
|
}
|