* libXaw: propagates libXmu.
svn path=/nixpkgs/branches/x-updates/; revision=25948
This commit is contained in:
parent
a3f620c3cc
commit
47aa6890d2
|
@ -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 ];
|
||||
|
|
Loading…
Reference in New Issue