nixpkgs/pkgs/development/libraries/xlibs-wrapper/default.nix
Eelco Dolstra ea95a0509e * Start the switch to the new X libraries. It's still conditional:
set `useOldXLibs' to `false' in all-packages-generic.nix to use
  them.
* Added Xaw3d.
* Added Xaw3d support to Emacs.

svn path=/nixpkgs/trunk/; revision=4263
2005-11-12 17:05:51 +00:00

11 lines
202 B
Nix

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