mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-14 12:27:44 +00:00
Merge pull request #41409 from ruuda/imagemagick-fftw
imagemagick: depend on fftw for fft feature
This commit is contained in:
commit
003dd8588b
@ -1,6 +1,6 @@
|
||||
{ lib, stdenv, fetchFromGitHub, fetchpatch, pkgconfig, libtool
|
||||
, bzip2, zlib, libX11, libXext, libXt, fontconfig, freetype, ghostscript, libjpeg
|
||||
, lcms2, openexr, libpng, librsvg, libtiff, libxml2, openjpeg, libwebp
|
||||
, lcms2, openexr, libpng, librsvg, libtiff, libxml2, openjpeg, libwebp, fftw
|
||||
, ApplicationServices
|
||||
, buildPlatform, hostPlatform
|
||||
}:
|
||||
@ -73,7 +73,7 @@ stdenv.mkDerivation rec {
|
||||
++ lib.optional stdenv.isDarwin ApplicationServices;
|
||||
|
||||
propagatedBuildInputs =
|
||||
[ bzip2 freetype libjpeg lcms2 ]
|
||||
[ bzip2 freetype libjpeg lcms2 fftw ]
|
||||
++ lib.optionals (!hostPlatform.isMinGW)
|
||||
[ libX11 libXext libXt libwebp ]
|
||||
;
|
||||
@ -101,5 +101,6 @@ stdenv.mkDerivation rec {
|
||||
description = "A software suite to create, edit, compose, or convert bitmap images";
|
||||
platforms = platforms.linux ++ platforms.darwin;
|
||||
maintainers = with maintainers; [ the-kenny wkennington ];
|
||||
license = licenses.asl20;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user