mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 06:31:02 +00:00
Merge pull request #23294 from yurrriq/update/pkgs/applications/graphics/graphicsmagick
graphicsmagick: fix for darwin
This commit is contained in:
commit
4150920a51
|
@ -1,6 +1,6 @@
|
|||
{ stdenv, fetchurl, fetchpatch, bzip2, freetype, graphviz, ghostscript
|
||||
, libjpeg, libpng, libtiff, libxml2, zlib, libtool, xz, libX11
|
||||
, libwebp, quantumdepth ? 8 }:
|
||||
, libwebp, quantumdepth ? 8, fixDarwinDylibNames }:
|
||||
|
||||
let version = "1.3.25"; in
|
||||
|
||||
|
@ -53,7 +53,8 @@ stdenv.mkDerivation {
|
|||
buildInputs =
|
||||
[ bzip2 freetype ghostscript graphviz libjpeg libpng libtiff libX11 libxml2
|
||||
zlib libtool libwebp
|
||||
];
|
||||
]
|
||||
++ stdenv.lib.optional stdenv.isDarwin fixDarwinDylibNames;
|
||||
|
||||
nativeBuildInputs = [ xz ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue