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
|
2017-01-10 22:03:49 +00:00
|
|
|
, ApplicationServices
|
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 = {
|
2017-06-17 13:51:05 +00:00
|
|
|
version = "6.9.8-10";
|
|
|
|
sha256 = "040qs7nwcm84bjd9wryvd58zqfykbmn3y3qfc90lnldww7v6ihlg";
|
2016-02-11 11:57:22 +00:00
|
|
|
patches = [];
|
|
|
|
}
|
|
|
|
# Freeze version on mingw so we don't need to port the patch too often.
|
2016-09-24 14:46:13 +00:00
|
|
|
# FIXME: This version has multiple security vulnerabilities
|
2016-02-11 11:57:22 +00:00
|
|
|
// lib.optionalAttrs (stdenv.cross.libc or null == "msvcrt") {
|
|
|
|
version = "6.9.2-0";
|
|
|
|
sha256 = "17ir8bw1j7g7srqmsz3rx780sgnc21zfn0kwyj78iazrywldx8h7";
|
2016-05-10 16:06:01 +00:00
|
|
|
patches = [(fetchpatch {
|
2016-02-11 11:57:22 +00:00
|
|
|
name = "mingw-build.patch";
|
|
|
|
url = "https://raw.githubusercontent.com/Alexpux/MINGW-packages/"
|
|
|
|
+ "01ca03b2a4ef/mingw-w64-imagemagick/002-build-fixes.patch";
|
2016-07-18 04:18:44 +00:00
|
|
|
sha256 = "1pypszlcx2sf7wfi4p37w1y58ck2r8cd5b2wrrwr9rh87p7fy1c0";
|
2016-05-10 16:06:01 +00:00
|
|
|
})];
|
2016-02-11 11:57:22 +00:00
|
|
|
};
|
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-12-14 22:32:40 +00:00
|
|
|
"https://bintray.com/homebrew/mirror/download_file?file_path=imagemagick-${version}.tar.xz"
|
2016-01-20 08:02:07 +00:00
|
|
|
];
|
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
|
|
|
|
2016-08-29 00:30:01 +00:00
|
|
|
outputs = [ "out" "dev" "doc" ]; # bin/ isn't really big
|
2016-05-22 11:41:15 +00:00
|
|
|
outputMan = "out"; # it's tiny
|
2015-07-26 21:39:24 +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"
|
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 ]
|
2017-01-10 22:03:49 +00:00
|
|
|
++ lib.optional stdenv.isDarwin ApplicationServices;
|
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-22 11:41:15 +00:00
|
|
|
(cd "$dev/include" && ln -s ImageMagick* ImageMagick)
|
|
|
|
moveToOutput "bin/*-config" "$dev"
|
|
|
|
moveToOutput "lib/ImageMagick-*/config-Q16" "$dev" # includes configure params
|
|
|
|
for file in "$dev"/bin/*-config; do
|
|
|
|
substituteInPlace "$file" --replace pkg-config \
|
|
|
|
"PKG_CONFIG_PATH='$dev/lib/pkgconfig' '${pkgconfig}/bin/pkg-config'"
|
|
|
|
done
|
2015-09-03 09:52:13 +00:00
|
|
|
'' + lib.optionalString (ghostscript != null) ''
|
|
|
|
for la in $out/lib/*.la; do
|
2016-05-22 11:41:15 +00:00
|
|
|
sed 's|-lgs|-L${lib.getLib ghostscript}/lib -lgs|' -i $la
|
2015-09-03 09:52:13 +00:00
|
|
|
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";
|
2016-05-22 11:41:15 +00:00
|
|
|
platforms = platforms.linux ++ platforms.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
|
|
|
}
|