summary refs log tree commit diff
path: root/pkgs/development/libraries/cairo
diff options
context:
space:
mode:
authorYury G. Kudryashov <urkud.urkud@gmail.com>2012-01-14 18:04:28 +0000
committerYury G. Kudryashov <urkud.urkud@gmail.com>2012-01-14 18:04:28 +0000
commit6232b9129d58e8288ec6476c503720c517d1ea99 (patch)
tree8d87f8b5fb918543304f50370242e67b884c5b58 /pkgs/development/libraries/cairo
parentd5b73eadeb26b88694ce2d87addcf17c65fda434 (diff)
downloadnixlib-6232b9129d58e8288ec6476c503720c517d1ea99.tar
nixlib-6232b9129d58e8288ec6476c503720c517d1ea99.tar.gz
nixlib-6232b9129d58e8288ec6476c503720c517d1ea99.tar.bz2
nixlib-6232b9129d58e8288ec6476c503720c517d1ea99.tar.lz
nixlib-6232b9129d58e8288ec6476c503720c517d1ea99.tar.xz
nixlib-6232b9129d58e8288ec6476c503720c517d1ea99.tar.zst
nixlib-6232b9129d58e8288ec6476c503720c517d1ea99.zip
cairo: propagate more dependencies
svn path=/nixpkgs/trunk/; revision=31565
Diffstat (limited to 'pkgs/development/libraries/cairo')
-rw-r--r--pkgs/development/libraries/cairo/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/cairo/default.nix b/pkgs/development/libraries/cairo/default.nix
index ca3e53e64f40..fe3fe1e251ca 100644
--- a/pkgs/development/libraries/cairo/default.nix
+++ b/pkgs/development/libraries/cairo/default.nix
@@ -21,15 +21,15 @@ stdenv.mkDerivation rec {
   };
 
   buildInputs =
-    [ pkgconfig x11 fontconfig pixman xlibs.libXrender ]
+    [ pkgconfig x11 fontconfig xlibs.libXrender ]
     ++ stdenv.lib.optionals xcbSupport [ libxcb xcbutil ]
-    ++ stdenv.lib.optional gobjectSupport glib
 
     # On non-GNU systems we need GNU Gettext for libintl.
     ++ stdenv.lib.optional (!stdenv.isLinux) gettext;
 
   propagatedBuildInputs =
-    [ freetype ] ++
+    [ freetype pixman ] ++
+    stdenv.lib.optional gobjectSupport glib ++
     stdenv.lib.optional postscriptSupport zlib ++
     stdenv.lib.optional pngSupport libpng;