summary refs log tree commit diff
path: root/pkgs/development/libraries/SDL/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/SDL/default.nix')
-rw-r--r--pkgs/development/libraries/SDL/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/libraries/SDL/default.nix b/pkgs/development/libraries/SDL/default.nix
index ed41431be067..902810d5aa77 100644
--- a/pkgs/development/libraries/SDL/default.nix
+++ b/pkgs/development/libraries/SDL/default.nix
@@ -1,11 +1,12 @@
 {stdenv, fetchurl, x11}:
 
 stdenv.mkDerivation {
-  name = "SDL-1.2.8";
+  name = "SDL-1.2.9";
   src = fetchurl {
-    url = http://www.libsdl.org/release/SDL-1.2.8.tar.gz;
-    md5 = "37aaf9f069f9c2c18856022f35de9f8c";
+    url = http://www.libsdl.org/release/SDL-1.2.9.tar.gz;
+    md5 = "80919ef556425ff82a8555ff40a579a0";
   };
   buildInputs = [x11];
   patches = [./no-cxx.patch];
+  NIX_CFLAGS_COMPILE = "-DBITS_PER_LONG=32"; /* !!! hack around kernel header bug */
 }