2005-11-12 18:05:51 +01:00
|
|
|
{stdenv, packages}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "xlibs-wrapper";
|
2006-12-27 19:24:26 +01:00
|
|
|
buildPhase = "true";
|
2006-12-28 02:19:15 +01:00
|
|
|
installPhase = "ensureDir $out";
|
2006-12-27 19:24:26 +01:00
|
|
|
unpackPhase = "sourceRoot=.";
|
2005-11-12 18:05:51 +01:00
|
|
|
propagatedBuildInputs = packages;
|
|
|
|
} // {
|
|
|
|
# For compatability with XFree86.
|
|
|
|
buildClientLibs = true;
|
|
|
|
}
|