summary refs log tree commit diff
path: root/pkgs/development/libraries/xlibs-wrapper/default.nix
blob: 91c1446ef20691ac916dc4d56d4df67a0e652751 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{stdenv, packages}:

stdenv.mkDerivation {
  name = "xlibs-wrapper";
  buildPhase = "true";
  installPhase = "true";
  unpackPhase = "sourceRoot=.";
  propagatedBuildInputs = packages;
} // {
  # For compatability with XFree86.
  buildClientLibs = true;
}