summary refs log tree commit diff
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2010-03-08 08:16:16 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2010-03-08 08:16:16 +0000
commit53cdaca17e7e617f4ee4b7bf31879330567474e8 (patch)
tree128e04295fde5f2b8e2a6e89469d4a5246357cba
parent4e59f0050147d22bfce3eb3a759047707a6b5958 (diff)
downloadnixpkgs-53cdaca17e7e617f4ee4b7bf31879330567474e8.tar
nixpkgs-53cdaca17e7e617f4ee4b7bf31879330567474e8.tar.gz
nixpkgs-53cdaca17e7e617f4ee4b7bf31879330567474e8.tar.bz2
nixpkgs-53cdaca17e7e617f4ee4b7bf31879330567474e8.tar.lz
nixpkgs-53cdaca17e7e617f4ee4b7bf31879330567474e8.tar.xz
nixpkgs-53cdaca17e7e617f4ee4b7bf31879330567474e8.tar.zst
nixpkgs-53cdaca17e7e617f4ee4b7bf31879330567474e8.zip
* NVidia driver: revert to 190.53 because 195.36.08 has been withdrawn
  due to a fan speed issue (reported by James Cook).

svn path=/nixpkgs/trunk/; revision=20468
-rw-r--r--pkgs/os-specific/linux/nvidia-x11/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/os-specific/linux/nvidia-x11/default.nix b/pkgs/os-specific/linux/nvidia-x11/default.nix
index 295282fea72..54e14b19726 100644
--- a/pkgs/os-specific/linux/nvidia-x11/default.nix
+++ b/pkgs/os-specific/linux/nvidia-x11/default.nix
@@ -2,7 +2,7 @@
 
 let 
 
-  versionNumber = "195.36.08";
+  versionNumber = "190.53";
 
 in
 
@@ -15,12 +15,12 @@ stdenv.mkDerivation {
     if stdenv.system == "i686-linux" then
       fetchurl {
         url = "http://us.download.nvidia.com/XFree86/Linux-x86/${versionNumber}/NVIDIA-Linux-x86-${versionNumber}-pkg0.run";
-        sha256 = "0kwkms1lj7h0gaz6x3m44575mfb1zbif0xlm55xffym2n4338lds";
+        sha256 = "0ypm4ld8zvir5c6nc1a7x4wxkb0fdx13lf8a2fzi3fmvhpa8bag9";
       }
     else if stdenv.system == "x86_64-linux" then
       fetchurl {
         url = "http://us.download.nvidia.com/XFree86/Linux-x86_64/${versionNumber}/NVIDIA-Linux-x86_64-${versionNumber}-pkg0.run";
-        sha256 = "14yxypv4fq4ldpin51110bs5a4062mfr7gvr1vikhsa1b2vq502f";
+        sha256 = "0mm841563wy373hg5az42dncmvkzk8y7yxlij7axw4q1pjbihi80";
       }
     else throw "nvidia-x11 does not support platform ${stdenv.system}";