summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2011-03-07 11:51:08 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2011-03-07 11:51:08 +0000
commit3e9de5097da8f6ec4619ea60dbf875a6c3b7bf64 (patch)
tree0a68aa251b4df48c0073abb7c17090d523f4bf23 /pkgs
parentc3e68778ae8564f81ee6da6b44bf651cf55fa54d (diff)
downloadnixlib-3e9de5097da8f6ec4619ea60dbf875a6c3b7bf64.tar
nixlib-3e9de5097da8f6ec4619ea60dbf875a6c3b7bf64.tar.gz
nixlib-3e9de5097da8f6ec4619ea60dbf875a6c3b7bf64.tar.bz2
nixlib-3e9de5097da8f6ec4619ea60dbf875a6c3b7bf64.tar.lz
nixlib-3e9de5097da8f6ec4619ea60dbf875a6c3b7bf64.tar.xz
nixlib-3e9de5097da8f6ec4619ea60dbf875a6c3b7bf64.tar.zst
nixlib-3e9de5097da8f6ec4619ea60dbf875a6c3b7bf64.zip
* Mesa updated to 7.10.1.
svn path=/nixpkgs/branches/x-updates/; revision=26186
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/mesa/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/libraries/mesa/default.nix b/pkgs/development/libraries/mesa/default.nix
index e88cf3a095a5..c2c61f901a9f 100644
--- a/pkgs/development/libraries/mesa/default.nix
+++ b/pkgs/development/libraries/mesa/default.nix
@@ -4,14 +4,14 @@ if ! stdenv.lib.lists.elem stdenv.system stdenv.lib.platforms.mesaPlatforms then
   throw "unsupported platform for Mesa"
 else
 
-let version = "7.9.1"; in
+let version = "7.10.1"; in
 
 stdenv.mkDerivation {
   name = "mesa-${version}";
 
   src = fetchurl {
     url = "ftp://ftp.freedesktop.org/pub/mesa/${version}/MesaLib-${version}.tar.bz2";
-    md5 = "07dc6cfb5928840b8b9df5bd1b3ae434";
+    md5 = "efe8da4d80c2a5d32a800770b8ce5dfa";
   };
 
   configureFlags =
@@ -21,9 +21,9 @@ stdenv.mkDerivation {
     + stdenv.lib.optionalString stdenv.isDarwin " --disable-egl";
 
   buildInputs =
-    [ pkgconfig expat x11 libdrm xlibs.glproto
+    [ pkgconfig expat x11 libdrm xlibs.makedepend xlibs.glproto
       xlibs.libXxf86vm xlibs.libXfixes xlibs.libXdamage xlibs.dri2proto
-      lipo talloc
+      lipo talloc 
     ];
 
   enableParallelBuilding = true;