bd56b7d65c
svn path=/nixpkgs/trunk/; revision=860
14 lines
336 B
Nix
14 lines
336 B
Nix
{stdenv, fetchurl, pkgconfig, xproto}:
|
|
|
|
derivation {
|
|
name = "libXau-0.1.1";
|
|
system = stdenv.system;
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://freedesktop.org/~xlibs/release/xlibs-1.0/libXau-0.1.1.tar.bz2;
|
|
md5 = "3d747ada4a7d17538fa21c62d5608656";
|
|
};
|
|
buildInputs = [pkgconfig xproto];
|
|
inherit stdenv;
|
|
}
|