3
0
Fork 0
forked from mirrors/nixpkgs

cairo-1.12.2: fix pixman include path

This commit is contained in:
Jason \"Don\" O'Conal 2013-06-15 15:04:05 +10:00 committed by Peter Simons
parent cba6d9b11a
commit 8ce7550a9f

View file

@ -32,6 +32,10 @@ stdenv.mkDerivation rec {
stdenv.lib.optional postscriptSupport zlib ++
stdenv.lib.optional pngSupport libpng;
NIX_CFLAGS_COMPILE = ( if stdenv.isDarwin
then "-I${pixman}/include/pixman-1"
else "" );
configureFlags =
[ "--enable-tee" ]
++ stdenv.lib.optional xcbSupport "--enable-xcb"