autotrace: fix darwin build
This commit is contained in:
parent
c10a1c6e1c
commit
a8382432d9
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, fetchurl, callPackage, libpng12, imagemagick,
|
{ stdenv, fetchurl, callPackage, libpng12, imagemagick,
|
||||||
autoreconfHook, glib, pstoedit, pkgconfig, gettext, darwin }:
|
autoreconfHook, glib, pstoedit, pkgconfig, gettext, gd, darwin }:
|
||||||
|
|
||||||
# TODO: Figure out why the resultant binary is somehow linked against
|
# TODO: Figure out why the resultant binary is somehow linked against
|
||||||
# libpng16.so.16 rather than libpng12.
|
# libpng16.so.16 rather than libpng12.
|
||||||
@ -36,7 +36,7 @@ stdenv.mkDerivation rec {
|
|||||||
nativeBuildInputs = [ autoreconfHook glib autofig pkgconfig gettext ];
|
nativeBuildInputs = [ autoreconfHook glib autofig pkgconfig gettext ];
|
||||||
buildInputs = [ libpng12 imagemagick pstoedit ]
|
buildInputs = [ libpng12 imagemagick pstoedit ]
|
||||||
++ stdenv.lib.optionals stdenv.isDarwin
|
++ stdenv.lib.optionals stdenv.isDarwin
|
||||||
(with darwin.apple_sdk.frameworks; [ApplicationServices]);
|
(with darwin.apple_sdk.frameworks; [ gd ApplicationServices ]);
|
||||||
|
|
||||||
postUnpack = ''
|
postUnpack = ''
|
||||||
pushd $sourceRoot
|
pushd $sourceRoot
|
||||||
|
Loading…
Reference in New Issue
Block a user