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

stdenv.mkDerivation {
  name = "xlibs-wrapper";
  builder = ./builder.sh;
  propagatedBuildInputs = packages;
} // {
  # For compatability with XFree86.
  buildClientLibs = true;
}