e42507d182
gazillion different servers. Resurrected some 25 missing files. svn path=/nixpkgs/trunk/; revision=2237
11 lines
272 B
Nix
11 lines
272 B
Nix
{stdenv, fetchurl, pkgconfig, xproto}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libXau-0.1.1";
|
|
src = fetchurl {
|
|
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/libXau-0.1.1.tar.bz2;
|
|
md5 = "3d747ada4a7d17538fa21c62d5608656";
|
|
};
|
|
buildInputs = [pkgconfig xproto];
|
|
}
|