nixpkgs/pkgs/servers/x11/xfree86/default.nix
Eelco Dolstra e42507d182 * Move tarballs to catamaran so that we are no longer dependent on a
gazillion different servers.  Resurrected some 25 missing files.

svn path=/nixpkgs/trunk/; revision=2237
2005-02-15 14:44:19 +00:00

33 lines
867 B
Nix

{ buildServer ? true
, buildClientLibs ? true
, stdenv, fetchurl, bison, flex}:
assert !buildServer; # we don't support this currently
assert buildClientLibs; # we don't support *not* doing this currently
assert bison != null && flex != null;
stdenv.mkDerivation {
name = "xfree86-4.3";
builder = ./builder.sh;
hostdef = ./host.def;
src1 = fetchurl {
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/X430src-1.tgz;
md5 = "4f241a4f867363f40efa2b00dca292af";
};
src2 = fetchurl {
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/X430src-2.tgz;
md5 = "844c2ee908d21dbf8911fd13115bf8b4";
};
src3 = fetchurl {
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/X430src-3.tgz;
md5 = "b82a0443e1b7bf860e4343e6b6766cb6";
};
buildServer = buildServer;
buildClientLibs = buildClientLibs;
bison = bison;
flex = flex;
}