nixpkgs/pkgs/development/libraries/freedesktop/xlibs/default.nix
Eelco Dolstra bd56b7d65c * Started moving from XFree86 to the freedesktop.org Xlibs libraries.
svn path=/nixpkgs/trunk/; revision=860
2004-03-27 21:59:31 +00:00

13 lines
243 B
Nix

{stdenv, libX11, libXt}:
derivation {
name = "xlib-1.0";
system = stdenv.system;
builder = ./builder.sh;
propagatedBuildInputs = [libX11 libXt];
inherit stdenv;
} // {
# For compatability with XFree86.
buildClientLibs = true;
}