* libXaw: propagates libXmu.

svn path=/nixpkgs/branches/x-updates/; revision=25948
This commit is contained in:
Eelco Dolstra 2011-02-14 10:04:37 +00:00
parent a3f620c3cc
commit 47aa6890d2
1 changed files with 6 additions and 0 deletions

View File

@ -69,6 +69,8 @@ in
};
# Propagate some build inputs because of header file dependencies.
# Note: most of these are in Requires.private, so maybe builder.sh
# should propagate them automatically.
libXt = attrs: attrs // {
preConfigure = setMalloc0ReturnsNullCrossCompiling;
propagatedBuildInputs = [ xorg.libSM ];
@ -82,6 +84,10 @@ in
propagatedBuildInputs = [ xorg.libXfixes ];
};
libXaw = attrs: attrs // {
propagatedBuildInputs = [ xorg.libXmu ];
};
libXft = attrs: attrs // {
buildInputs = attrs.buildInputs ++ [ xorg.xproto xorg.libX11
xorg.renderproto ];