2018-07-21 01:44:44 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, pkgconfig, libtool
|
2019-01-25 21:43:58 +00:00
|
|
|
, bzip2, zlib, libX11, libXext, libXt, fontconfig, freetype, ghostscript, libjpeg, djvulibre
|
2018-07-01 10:05:59 +01:00
|
|
|
, lcms2, openexr, libpng, librsvg, libtiff, libxml2, openjpeg, libwebp, libheif
|
2017-01-10 22:03:49 +00:00
|
|
|
, ApplicationServices
|
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"
|
|
|
|
else if stdenv.hostPlatform.system == "aarch64-linux" then "aarch64"
|
2016-12-28 13:15:53 +00:00
|
|
|
else throw "ImageMagick is not supported on this platform.";
|
|
|
|
|
|
|
|
cfg = {
|
2019-10-27 13:06:55 +00:00
|
|
|
version = "7.0.9-0";
|
|
|
|
sha256 = "1w7ci7v5qlayd7a5z69px94fz3fshvn1diqw7k1ymsyvz5888d39";
|
2016-12-28 13:15:53 +00:00
|
|
|
patches = [];
|
|
|
|
};
|
|
|
|
in
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "imagemagick";
|
2016-12-28 13:15:53 +00:00
|
|
|
inherit (cfg) version;
|
|
|
|
|
2018-01-29 18:25:17 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ImageMagick";
|
|
|
|
repo = "ImageMagick";
|
|
|
|
rev = cfg.version;
|
2016-12-28 13:15:53 +00:00
|
|
|
inherit (cfg) sha256;
|
|
|
|
};
|
|
|
|
|
2019-05-24 22:43:01 +01:00
|
|
|
patches = cfg.patches;
|
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" ]
|
|
|
|
++ [ "--with-gcc-arch=${arch}" ]
|
|
|
|
++ lib.optional (librsvg != null) "--with-rsvg"
|
|
|
|
++ 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
|
|
|
|
;
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig libtool ];
|
|
|
|
|
|
|
|
buildInputs =
|
|
|
|
[ zlib fontconfig freetype ghostscript
|
2019-01-25 21:43:58 +00:00
|
|
|
libpng libtiff libxml2 libheif djvulibre
|
2016-12-28 13:15:53 +00:00
|
|
|
]
|
2018-08-20 19:43:41 +01:00
|
|
|
++ lib.optionals (!stdenv.hostPlatform.isMinGW)
|
2016-12-28 13:15:53 +00:00
|
|
|
[ openexr librsvg openjpeg ]
|
2017-01-10 22:03:49 +00:00
|
|
|
++ lib.optional stdenv.isDarwin ApplicationServices;
|
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 \
|
|
|
|
"PKG_CONFIG_PATH='$dev/lib/pkgconfig' '${pkgconfig}/bin/pkg-config'"
|
|
|
|
done
|
|
|
|
'' + lib.optionalString (ghostscript != null) ''
|
|
|
|
for la in $out/lib/*.la; do
|
|
|
|
sed 's|-lgs|-L${lib.getLib ghostscript}/lib -lgs|' -i $la
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://www.imagemagick.org/;
|
|
|
|
description = "A software suite to create, edit, compose, or convert bitmap images";
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2018-08-22 22:51:23 +01:00
|
|
|
license = licenses.asl20;
|
2019-01-26 10:01:09 +00:00
|
|
|
maintainers = with maintainers; [ the-kenny ];
|
2016-12-28 13:15:53 +00:00
|
|
|
};
|
|
|
|
}
|