bd56b7d65c
svn path=/nixpkgs/trunk/; revision=860
13 lines
243 B
Nix
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;
|
|
}
|