00004fa6da
* Cleaned up some packages. svn path=/nixpkgs/trunk/; revision=883
11 lines
282 B
Nix
11 lines
282 B
Nix
{stdenv, libX11, libXt, freetype, fontconfig, libXft, libXext}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "xlib-1.0";
|
|
builder = ./builder.sh;
|
|
propagatedBuildInputs = [libX11 libXt freetype fontconfig libXft libXext];
|
|
} // {
|
|
# For compatability with XFree86.
|
|
buildClientLibs = true;
|
|
}
|