about summary refs log tree commit diff
path: root/pkgs/development/libraries/libdrm
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2010-02-17 09:56:04 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2010-02-17 09:56:04 +0000
commit3687bc9e39aa46762cf257bed3c311a4a77a8db3 (patch)
tree2931a78b7ef96d361f22997fa07e9b7472ae61c3 /pkgs/development/libraries/libdrm
parentc8dd2f9891c96f1e6824968ac4dd2a589f6bbe6f (diff)
downloadnixlib-3687bc9e39aa46762cf257bed3c311a4a77a8db3.tar
nixlib-3687bc9e39aa46762cf257bed3c311a4a77a8db3.tar.gz
nixlib-3687bc9e39aa46762cf257bed3c311a4a77a8db3.tar.bz2
nixlib-3687bc9e39aa46762cf257bed3c311a4a77a8db3.tar.lz
nixlib-3687bc9e39aa46762cf257bed3c311a4a77a8db3.tar.xz
nixlib-3687bc9e39aa46762cf257bed3c311a4a77a8db3.tar.zst
nixlib-3687bc9e39aa46762cf257bed3c311a4a77a8db3.zip
* libdrm updated to 2.4.18 ("motivated by a fix for a bug in the intel
  support which was causing dramatic failures with at least version
  2.10 of the xf86-video-intel driver").

svn path=/nixpkgs/trunk/; revision=20073
Diffstat (limited to 'pkgs/development/libraries/libdrm')
-rw-r--r--pkgs/development/libraries/libdrm/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libdrm/default.nix b/pkgs/development/libraries/libdrm/default.nix
index 98dce86a2f82..0b8593279d3f 100644
--- a/pkgs/development/libraries/libdrm/default.nix
+++ b/pkgs/development/libraries/libdrm/default.nix
@@ -1,11 +1,11 @@
 {stdenv, fetchurl, pkgconfig, libpthreadstubs}:
 
 stdenv.mkDerivation rec {
-  name = "libdrm-2.4.17";
+  name = "libdrm-2.4.18";
   
   src = fetchurl {
     url = "http://dri.freedesktop.org/libdrm/${name}.tar.bz2";
-    sha256 = "0sii8bhplb99i4x67626sd4pm1c2i3i0c73rdma71sdh233fg95q";
+    sha256 = "015nxrb2wvyqlxvwaqq40v46nj96sk71p2n4dh4h5djwzx7v9ign";
   };
 
   buildInputs = [ pkgconfig libpthreadstubs ];