summary refs log tree commit diff
path: root/pkgs/servers/x11/xfree86/default.nix
blob: 67a26d41a4be1a839910d17b063a3fc8a9e1594c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ 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;
}