1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/applications/graphics/ImageMagick/7.0.nix

90 lines
2.8 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, fetchpatch, pkgconfig, libtool
2016-12-28 13:15:53 +00:00
, bzip2, zlib, libX11, libXext, libXt, fontconfig, freetype, ghostscript, libjpeg
, lcms2, openexr, libpng, librsvg, libtiff, libxml2, openjpeg, libwebp
2017-01-10 22:03:49 +00:00
, ApplicationServices
, buildPlatform, hostPlatform
2016-12-28 13:15:53 +00:00
}:
let
arch =
if stdenv.system == "i686-linux" then "i686"
else if stdenv.system == "x86_64-linux" || stdenv.system == "x86_64-darwin" then "x86-64"
else if stdenv.system == "armv7l-linux" then "armv7l"
2017-08-23 11:36:24 +01:00
else if stdenv.system == "aarch64-linux" then "aarch64"
2016-12-28 13:15:53 +00:00
else throw "ImageMagick is not supported on this platform.";
cfg = {
imagemagick7: 7.0.7-35 -> 7.0.8-2 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/imagemagick/versions. These checks were done: - built on NixOS - /nix/store/x4mcjcryj5q7mm7bcmr1shyx1rvazpw1-imagemagick-7.0.8-2/bin/animate passed the binary check. - /nix/store/x4mcjcryj5q7mm7bcmr1shyx1rvazpw1-imagemagick-7.0.8-2/bin/compare passed the binary check. - /nix/store/x4mcjcryj5q7mm7bcmr1shyx1rvazpw1-imagemagick-7.0.8-2/bin/composite passed the binary check. - /nix/store/x4mcjcryj5q7mm7bcmr1shyx1rvazpw1-imagemagick-7.0.8-2/bin/conjure passed the binary check. - /nix/store/x4mcjcryj5q7mm7bcmr1shyx1rvazpw1-imagemagick-7.0.8-2/bin/convert passed the binary check. - /nix/store/x4mcjcryj5q7mm7bcmr1shyx1rvazpw1-imagemagick-7.0.8-2/bin/display passed the binary check. - /nix/store/x4mcjcryj5q7mm7bcmr1shyx1rvazpw1-imagemagick-7.0.8-2/bin/identify passed the binary check. - /nix/store/x4mcjcryj5q7mm7bcmr1shyx1rvazpw1-imagemagick-7.0.8-2/bin/import passed the binary check. - /nix/store/x4mcjcryj5q7mm7bcmr1shyx1rvazpw1-imagemagick-7.0.8-2/bin/magick-script passed the binary check. - /nix/store/x4mcjcryj5q7mm7bcmr1shyx1rvazpw1-imagemagick-7.0.8-2/bin/mogrify passed the binary check. - /nix/store/x4mcjcryj5q7mm7bcmr1shyx1rvazpw1-imagemagick-7.0.8-2/bin/montage passed the binary check. - Warning: no invocation of /nix/store/x4mcjcryj5q7mm7bcmr1shyx1rvazpw1-imagemagick-7.0.8-2/bin/stream had a zero exit code or showed the expected version - /nix/store/x4mcjcryj5q7mm7bcmr1shyx1rvazpw1-imagemagick-7.0.8-2/bin/magick passed the binary check. - 12 of 13 passed binary check by having a zero exit code. - 0 of 13 passed binary check by having the new version present in output. - found 7.0.8-2 with grep in /nix/store/x4mcjcryj5q7mm7bcmr1shyx1rvazpw1-imagemagick-7.0.8-2 - directory tree listing: https://gist.github.com/de6e213f2639e6aea0a5c353ee83f68b - du listing: https://gist.github.com/936da3ad90cfeb17b4597d3a305dbffb
2018-06-24 05:54:57 +01:00
version = "7.0.8-2";
sha256 = "06cpvvv8xikw5jm1pa2xxxlnsy743ham67yshpndn2x3fyf48267";
2016-12-28 13:15:53 +00:00
patches = [];
};
in
stdenv.mkDerivation rec {
name = "imagemagick-${version}";
inherit (cfg) version;
src = fetchFromGitHub {
owner = "ImageMagick";
repo = "ImageMagick";
rev = cfg.version;
2016-12-28 13:15:53 +00:00
inherit (cfg) sha256;
};
patches = [ ./imagetragick.patch ] ++ cfg.patches;
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"
]
++ lib.optionals 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
libpng libtiff libxml2
]
++ lib.optionals (!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 ]
++ lib.optionals (!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;
maintainers = with maintainers; [ the-kenny wkennington ];
};
}