2021-01-13 01:17:37 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, pkg-config, libtool
|
2019-01-25 21:43:58 +00:00
|
|
|
, bzip2, zlib, libX11, libXext, libXt, fontconfig, freetype, ghostscript, libjpeg, djvulibre
|
2018-07-01 13:09:22 +01:00
|
|
|
, lcms2, openexr, libpng, librsvg, libtiff, libxml2, openjpeg, libwebp, fftw, libheif, libde265
|
2017-01-10 22:03:49 +00:00
|
|
|
, ApplicationServices
|
2010-04-30 11:49:33 +01:00
|
|
|
}:
|
2008-05-16 12:05:37 +01:00
|
|
|
|
2010-04-30 11:49:33 +01:00
|
|
|
let
|
2014-10-30 12:34:26 +00:00
|
|
|
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"
|
|
|
|
else if stdenv.hostPlatform.system == "aarch64-linux" then "aarch64"
|
2020-10-03 02:46:18 +01:00
|
|
|
else if stdenv.hostPlatform.system == "powerpc64le-linux" then "ppc64le"
|
2014-10-30 12:34:26 +00:00
|
|
|
else throw "ImageMagick is not supported on this platform.";
|
2010-04-30 11:49:33 +01:00
|
|
|
in
|
2014-10-30 12:34:26 +00:00
|
|
|
|
2021-01-13 01:17:37 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "imagemagick";
|
2021-03-14 17:11:02 +00:00
|
|
|
version = "6.9.12-3";
|
2008-02-28 18:53:39 +00:00
|
|
|
|
2018-01-02 10:03:56 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ImageMagick";
|
2018-04-21 09:41:53 +01:00
|
|
|
repo = "ImageMagick6";
|
2021-01-13 01:17:37 +00:00
|
|
|
rev = version;
|
2021-03-14 17:11:02 +00:00
|
|
|
sha256 = "sha256-h9c0N9AcFVpNYpKl+95q1RVJWuacN4N4kbAJIKJp8Jc=";
|
2008-02-28 18:53:39 +00:00
|
|
|
};
|
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "out" "dev" "doc" ]; # bin/ isn't really big
|
2016-05-22 12:41:15 +01:00
|
|
|
outputMan = "out"; # it's tiny
|
2015-07-26 22:39:24 +01:00
|
|
|
|
2013-09-26 18:27:13 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-07-26 22:33:49 +01: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
|
|
|
]
|
2018-08-20 19:43:41 +01:00
|
|
|
++ lib.optionals (stdenv.hostPlatform.isMinGW)
|
2016-02-11 11:57:22 +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 ];
|
2015-07-26 22:33:49 +01:00
|
|
|
|
|
|
|
buildInputs =
|
2016-02-11 11:57:22 +00:00
|
|
|
[ zlib fontconfig freetype ghostscript
|
2019-01-25 21:43:58 +00:00
|
|
|
libpng libtiff libxml2 libheif libde265 djvulibre
|
2016-02-11 11:57:22 +00:00
|
|
|
]
|
2018-08-20 19:43:41 +01:00
|
|
|
++ lib.optionals (!stdenv.hostPlatform.isMinGW)
|
2016-05-05 07:18:44 +01:00
|
|
|
[ openexr librsvg openjpeg ]
|
2017-01-10 22:03:49 +00:00
|
|
|
++ lib.optional stdenv.isDarwin ApplicationServices;
|
2015-07-26 22:33:49 +01:00
|
|
|
|
|
|
|
propagatedBuildInputs =
|
2018-06-03 11:00:27 +01:00
|
|
|
[ bzip2 freetype libjpeg lcms2 fftw ]
|
2018-08-20 19:43:41 +01:00
|
|
|
++ lib.optionals (!stdenv.hostPlatform.isMinGW)
|
2016-05-05 07:18:44 +01:00
|
|
|
[ libX11 libXext libXt libwebp ]
|
2016-02-11 11:57:22 +00:00
|
|
|
;
|
2015-03-30 06:46:16 +01:00
|
|
|
|
2018-04-25 04:20:18 +01:00
|
|
|
doCheck = false; # fails 6 out of 76 tests
|
|
|
|
|
2015-09-03 10:52:13 +01:00
|
|
|
postInstall = ''
|
2016-05-22 12:41:15 +01: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
|
2021-01-19 06:50:56 +00:00
|
|
|
substituteInPlace "$file" --replace "${pkg-config}/bin/pkg-config -config" \
|
|
|
|
${pkg-config}/bin/${pkg-config.targetPrefix}pkg-config
|
|
|
|
substituteInPlace "$file" --replace ${pkg-config}/bin/pkg-config \
|
|
|
|
"PKG_CONFIG_PATH='$dev/lib/pkgconfig' '${pkg-config}/bin/${pkg-config.targetPrefix}pkg-config'"
|
2016-05-22 12:41:15 +01:00
|
|
|
done
|
2015-09-03 10:52:13 +01:00
|
|
|
'' + lib.optionalString (ghostscript != null) ''
|
|
|
|
for la in $out/lib/*.la; do
|
2016-05-22 12:41:15 +01:00
|
|
|
sed 's|-lgs|-L${lib.getLib ghostscript}/lib -lgs|' -i $la
|
2015-09-03 10:52:13 +01:00
|
|
|
done
|
|
|
|
'';
|
2008-02-28 18:53:39 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2021-02-27 18:12:43 +00:00
|
|
|
homepage = "https://legacy.imagemagick.org/";
|
|
|
|
changelog = "https://legacy.imagemagick.org/script/changelog.php";
|
2013-01-06 21:30:23 +00:00
|
|
|
description = "A software suite to create, edit, compose, or convert bitmap images";
|
2016-05-22 12:41:15 +01:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2021-03-14 17:12:14 +00:00
|
|
|
maintainers = with maintainers; [ erictapen ];
|
2018-06-03 11:09:02 +01:00
|
|
|
license = licenses.asl20;
|
2008-02-28 18:53:39 +00:00
|
|
|
};
|
2010-04-30 11:49:33 +01:00
|
|
|
}
|