about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/xlibs-wrapper/default.nix
blob: 735cc278debf316d0cff94607176adbd4645e599 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{lib, stdenv, packages}:

stdenv.mkDerivation {
  name = "xlibs-wrapper";

  dontBuild = true;

  installPhase = "mkdir -p $out";
  unpackPhase = "sourceRoot=.";

  propagatedBuildInputs = packages;

  preferLocalBuild = true;
} // {
  # For compatability with XFree86.
  buildClientLibs = true;

  meta = {
    platforms = lib.platforms.unix;
  };
}