1{stdenv, packages}:
2
3stdenv.mkDerivation {
4 name = "xlibs-wrapper";
5
6 dontBuild = true;
7
8 installPhase = "mkdir -p $out";
9 unpackPhase = "sourceRoot=.";
10
11 propagatedBuildInputs = packages;
12
13 preferLocalBuild = true;
14} // {
15 # For compatability with XFree86.
16 buildClientLibs = true;
17
18 meta = {
19 platforms = stdenv.lib.platforms.unix;
20 };
21}