core/pkgs/by-name/im/imagemagick/default.nix

131 lines
5 KiB
Nix
Raw Normal View History

2024-05-13 21:24:10 +00:00
{ lib, stdenv, fetchFromGitHub, pkg-config, libtool, bzip2Support ? true, bzip2
, zlibSupport ? true, zlib, libX11Support ? !stdenv.hostPlatform.isMinGW, libX11
, libXtSupport ? !stdenv.hostPlatform.isMinGW, libXt, fontconfigSupport ? true
, fontconfig, freetypeSupport ? true, freetype, ghostscriptSupport ? false
, ghostscript, libjpegSupport ? true, libjpeg, djvulibreSupport ? true
, djvulibre, lcms2Support ? true, lcms2
, openexrSupport ? !stdenv.hostPlatform.isMinGW, openexr, libjxlSupport ? true
, libjxl, libpngSupport ? true, libpng, liblqr1Support ? true, liblqr1
, librawSupport ? true, libraw, librsvgSupport ? !stdenv.hostPlatform.isMinGW
, librsvg, pango, libtiffSupport ? true, libtiff, libxml2Support ? true, libxml2
2024-05-02 00:46:19 +00:00
, openjpegSupport ? !stdenv.hostPlatform.isMinGW, openjpeg
2024-05-13 21:24:10 +00:00
, libwebpSupport ? !stdenv.hostPlatform.isMinGW, libwebp, libheifSupport ? true
, libheif, potrace, coreutils, curl, ApplicationServices, Foundation
2024-05-02 00:46:19 +00:00
# for passthru.tests
# , testers
# , imagemagick
# , nixos-icons
# , perlPackages
# , python3
}:
assert libXtSupport -> libX11Support;
let
2024-05-13 21:24:10 +00:00
arch = 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"
|| stdenv.hostPlatform.system == "aarch64-darwin" then
"aarch64"
else if stdenv.hostPlatform.system == "powerpc64le-linux" then
"ppc64le"
else
null;
2024-05-02 00:46:19 +00:00
2024-05-13 21:24:10 +00:00
in stdenv.mkDerivation (finalAttrs: {
2024-05-02 00:46:19 +00:00
pname = "imagemagick";
version = "7.1.1-29";
src = fetchFromGitHub {
owner = "ImageMagick";
repo = "ImageMagick";
rev = finalAttrs.version;
hash = "sha256-W9WbHzmTa0dA9+mOxXu88qmN1mO9ORaH0Nj6r2s1Q+E=";
};
outputs = [ "out" "dev" "doc" ]; # bin/ isn't really big
outputMan = "out"; # it's tiny
enableParallelBuilding = true;
configureFlags = [
# specify delegates explicitly otherwise `convert` will invoke the build
# coreutils for filetypes it doesn't natively support.
"MVDelegate=${lib.getExe' coreutils "mv"}"
"RMDelegate=${lib.getExe' coreutils "rm"}"
"--with-frozenpaths"
(lib.withFeatureAs (arch != null) "gcc-arch" arch)
(lib.withFeature librsvgSupport "rsvg")
(lib.withFeature librsvgSupport "pango")
(lib.withFeature liblqr1Support "lqr")
(lib.withFeature libjxlSupport "jxl")
2024-05-13 21:24:10 +00:00
(lib.withFeatureAs ghostscriptSupport "gs-font-dir"
"${ghostscript}/share/ghostscript/fonts")
2024-05-02 00:46:19 +00:00
(lib.withFeature ghostscriptSupport "gslib")
] ++ lib.optionals stdenv.hostPlatform.isMinGW [
# due to libxml2 being without DLLs ATM
2024-05-13 21:24:10 +00:00
"--enable-static"
"--disable-shared"
2024-05-02 00:46:19 +00:00
];
nativeBuildInputs = [ pkg-config libtool ];
2024-05-13 21:24:10 +00:00
buildInputs = [ potrace ] ++ lib.optional zlibSupport zlib
2024-05-02 00:46:19 +00:00
++ lib.optional fontconfigSupport fontconfig
++ lib.optional ghostscriptSupport ghostscript
2024-05-13 21:24:10 +00:00
++ lib.optional liblqr1Support liblqr1 ++ lib.optional libpngSupport libpng
++ lib.optional librawSupport libraw ++ lib.optional libtiffSupport libtiff
2024-05-02 00:46:19 +00:00
++ lib.optional libxml2Support libxml2
++ lib.optional libheifSupport libheif
++ lib.optional djvulibreSupport djvulibre
2024-05-13 21:24:10 +00:00
++ lib.optional libjxlSupport libjxl ++ lib.optional openexrSupport openexr
++ lib.optionals librsvgSupport [ librsvg pango ]
2024-05-02 00:46:19 +00:00
++ lib.optional openjpegSupport openjpeg
2024-05-13 21:24:10 +00:00
++ lib.optionals stdenv.isDarwin [ ApplicationServices Foundation ];
2024-05-02 00:46:19 +00:00
2024-05-13 21:24:10 +00:00
propagatedBuildInputs = [ curl ] ++ lib.optional bzip2Support bzip2
2024-05-02 00:46:19 +00:00
++ lib.optional freetypeSupport freetype
2024-05-13 21:24:10 +00:00
++ lib.optional libjpegSupport libjpeg ++ lib.optional lcms2Support lcms2
++ lib.optional libX11Support libX11 ++ lib.optional libXtSupport libXt
2024-05-02 00:46:19 +00:00
++ lib.optional libwebpSupport 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' '$(command -v $PKG_CONFIG)'"
done
'' + lib.optionalString ghostscriptSupport ''
for la in $out/lib/*.la; do
sed 's|-lgs|-L${lib.getLib ghostscript}/lib -lgs|' -i $la
done
'';
# passthru.tests = {
# version = testers.testVersion { package = finalAttrs.finalPackage; };
# inherit nixos-icons;
# inherit (perlPackages) ImageMagick;
# inherit (python3.pkgs) img2pdf;
# pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
# };
meta = with lib; {
homepage = "http://www.imagemagick.org/";
changelog = "https://github.com/ImageMagick/Website/blob/main/ChangeLog.md";
2024-05-13 21:24:10 +00:00
description =
"A software suite to create, edit, compose, or convert bitmap images";
2024-05-02 00:46:19 +00:00
pkgConfigModules = [ "ImageMagick" "MagickWand" ];
platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ erictapen dotlambda rhendric ];
license = licenses.asl20;
mainProgram = "magick";
};
})