* Updated the X.org server to 1.8.2. Note that it no longer depends

on HAL but instead uses udev to autoconfigure input devices.  We'll
  have to update the NixOS X server module accordingly, I guess.  See
  https://fedoraproject.org/wiki/Input_device_configuration.
* Updated Mesa to 7.8.2.

svn path=/nixpkgs/branches/x-updates/; revision=22681
This commit is contained in:
Eelco Dolstra
2010-07-20 19:24:21 +00:00
parent 37f6612875
commit 78a5abdf85
7 changed files with 22 additions and 19 deletions

View File

@@ -1,11 +1,11 @@
{stdenv, fetchurl, x11, mesa}:
stdenv.mkDerivation {
name = "glxinfo-7.4.1";
name = "glxinfo-7.8.2";
src = fetchurl {
url = mirror://sourceforge/mesa3d/MesaDemos-7.4.1.tar.bz2;
md5 = "1e169fb6abc2b45613f1c98a82dfe690";
url = ftp://ftp.freedesktop.org/pub/mesa/7.8.2/MesaDemos-7.8.2.tar.bz2;
md5 = "757d9e2e06f48b1a52848be9b0307ced";
};
buildInputs = [x11 mesa];