2021-12-27 00:02:04 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, libtool
|
2019-01-25 21:43:58 +00:00
|
|
|
, bzip2, zlib, libX11, libXext, libXt, fontconfig, freetype, ghostscript, libjpeg, djvulibre
|
2021-10-12 01:06:31 +01:00
|
|
|
, lcms2, openexr, libjxl, libpng, liblqr1, libraw, librsvg, libtiff, libxml2, openjpeg, libwebp, libheif
|
2017-01-10 22:03:49 +00:00
|
|
|
, ApplicationServices
|
2021-04-28 08:53:27 +01:00
|
|
|
, Foundation
|
2021-05-06 09:08:08 +01:00
|
|
|
, testVersion, imagemagick
|
2016-12-28 13:15:53 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
arch =
|
2018-08-20 20:11:29 +01:00
|
|
|
if stdenv.hostPlatform.system == "i686-linux" then "i686"
|
|
|
|
else if stdenv.hostPlatform.system == "x86_64-linux" || stdenv.hostPlatform.system == "x86_64-darwin" then "x86-64"
|
|
|
|
else if stdenv.hostPlatform.system == "armv7l-linux" then "armv7l"
|
2021-03-19 09:11:25 +00:00
|
|
|
else if stdenv.hostPlatform.system == "aarch64-linux" || stdenv.hostPlatform.system == "aarch64-darwin" then "aarch64"
|
2020-10-03 02:46:18 +01:00
|
|
|
else if stdenv.hostPlatform.system == "powerpc64le-linux" then "ppc64le"
|
2021-06-01 02:28:16 +01:00
|
|
|
else null;
|
2016-12-28 13:15:53 +00:00
|
|
|
in
|
|
|
|
|
2021-04-01 19:57:10 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "imagemagick";
|
2021-12-27 00:02:04 +00:00
|
|
|
version = "7.1.0-19";
|
2016-12-28 13:15:53 +00:00
|
|
|
|
2021-12-27 00:02:04 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://download.imagemagick.org/ImageMagick/download/releases/ImageMagick-${version}.tar.xz";
|
|
|
|
hash = "sha256-P9eRdKsPMLwWQ68+ZU8dL/zDqVVCY5gRVWiLT0n3/Xc=";
|
2016-12-28 13:15:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
outputs = [ "out" "dev" "doc" ]; # bin/ isn't really big
|
|
|
|
outputMan = "out"; # it's tiny
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
configureFlags =
|
|
|
|
[ "--with-frozenpaths" ]
|
2021-06-01 02:28:16 +01:00
|
|
|
++ (if arch != null then [ "--with-gcc-arch=${arch}" ] else [ "--without-gcc-arch" ])
|
2016-12-28 13:15:53 +00:00
|
|
|
++ lib.optional (librsvg != null) "--with-rsvg"
|
2021-06-25 02:11:41 +01:00
|
|
|
++ lib.optional (liblqr1 != null) "--with-lqr"
|
2021-09-27 22:09:30 +01:00
|
|
|
# libjxl is broken on aarch64 (see meta.broken in libjxl) for now,
|
|
|
|
# let's disable it for now to unbreak the imagemagick build.
|
|
|
|
++ lib.optional (libjxl != null && !stdenv.isAarch64) "--with-jxl"
|
2016-12-28 13:15:53 +00:00
|
|
|
++ lib.optionals (ghostscript != null)
|
|
|
|
[ "--with-gs-font-dir=${ghostscript}/share/ghostscript/fonts"
|
|
|
|
"--with-gslib"
|
|
|
|
]
|
2018-08-20 19:43:41 +01:00
|
|
|
++ lib.optionals stdenv.hostPlatform.isMinGW
|
2016-12-28 13:15:53 +00:00
|
|
|
[ "--enable-static" "--disable-shared" ] # due to libxml2 being without DLLs ATM
|
|
|
|
;
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config libtool ];
|
2016-12-28 13:15:53 +00:00
|
|
|
|
|
|
|
buildInputs =
|
|
|
|
[ zlib fontconfig freetype ghostscript
|
2021-10-12 01:06:31 +01:00
|
|
|
liblqr1 libpng libraw libtiff libxml2 libheif djvulibre
|
2016-12-28 13:15:53 +00:00
|
|
|
]
|
2021-09-27 22:09:30 +01:00
|
|
|
# libjxl is broken on aarch64 (see meta.broken in libjxl) for now,
|
|
|
|
# let's disable it for now to unbreak the imagemagick build.
|
|
|
|
++ lib.optionals (!stdenv.isAarch64)
|
|
|
|
[ libjxl ]
|
2018-08-20 19:43:41 +01:00
|
|
|
++ lib.optionals (!stdenv.hostPlatform.isMinGW)
|
2016-12-28 13:15:53 +00:00
|
|
|
[ openexr librsvg openjpeg ]
|
2021-04-28 08:53:27 +01:00
|
|
|
++ lib.optionals stdenv.isDarwin [
|
|
|
|
ApplicationServices
|
|
|
|
Foundation
|
|
|
|
];
|
2016-12-28 13:15:53 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs =
|
|
|
|
[ bzip2 freetype libjpeg lcms2 ]
|
2018-08-20 19:43:41 +01:00
|
|
|
++ lib.optionals (!stdenv.hostPlatform.isMinGW)
|
2016-12-28 13:15:53 +00:00
|
|
|
[ libX11 libXext libXt libwebp ]
|
|
|
|
;
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
(cd "$dev/include" && ln -s ImageMagick* ImageMagick)
|
|
|
|
moveToOutput "bin/*-config" "$dev"
|
|
|
|
moveToOutput "lib/ImageMagick-*/config-Q16HDRI" "$dev" # includes configure params
|
|
|
|
for file in "$dev"/bin/*-config; do
|
|
|
|
substituteInPlace "$file" --replace pkg-config \
|
2021-01-19 06:50:56 +00:00
|
|
|
"PKG_CONFIG_PATH='$dev/lib/pkgconfig' '${pkg-config}/bin/${pkg-config.targetPrefix}pkg-config'"
|
2016-12-28 13:15:53 +00:00
|
|
|
done
|
|
|
|
'' + lib.optionalString (ghostscript != null) ''
|
|
|
|
for la in $out/lib/*.la; do
|
|
|
|
sed 's|-lgs|-L${lib.getLib ghostscript}/lib -lgs|' -i $la
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2021-05-06 09:08:08 +01:00
|
|
|
passthru.tests.version =
|
|
|
|
testVersion { package = imagemagick; };
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.imagemagick.org/";
|
2016-12-28 13:15:53 +00:00
|
|
|
description = "A software suite to create, edit, compose, or convert bitmap images";
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2021-06-26 10:32:57 +01:00
|
|
|
maintainers = with maintainers; [ erictapen dotlambda ];
|
2018-08-22 22:51:23 +01:00
|
|
|
license = licenses.asl20;
|
2021-04-27 18:44:47 +01:00
|
|
|
mainProgram = "magick";
|
2016-12-28 13:15:53 +00:00
|
|
|
};
|
|
|
|
}
|