* libXft: propagate libXrender.

svn path=/nixpkgs/branches/x-updates/; revision=25950
This commit is contained in:
Eelco Dolstra 2011-02-14 10:14:34 +00:00
parent 8c58edf34d
commit 1566609a1a

View File

@ -89,8 +89,9 @@ in
}; };
libXft = attrs: attrs // { libXft = attrs: attrs // {
buildInputs = attrs.buildInputs ++ [ xorg.xproto xorg.libX11 buildInputs = attrs.buildInputs ++
xorg.renderproto ]; [ xorg.xproto xorg.libX11 xorg.renderproto ];
propagatedBuildInputs = [ xorg.libXrender ];
preConfigure = setMalloc0ReturnsNullCrossCompiling; preConfigure = setMalloc0ReturnsNullCrossCompiling;
}; };