summary refs log tree commit diff
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-11-23 21:40:51 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-11-23 21:40:51 +0000
commit3881f13ad6392bf067e1b5e299de6146e059f90c (patch)
treeaf7fa5840df45f46e3743ad07d70717a31da4a6c
parentb4e31ce1bf994d24f6525ae69d9538b1c30a4085 (diff)
downloadnixpkgs-3881f13ad6392bf067e1b5e299de6146e059f90c.tar
nixpkgs-3881f13ad6392bf067e1b5e299de6146e059f90c.tar.gz
nixpkgs-3881f13ad6392bf067e1b5e299de6146e059f90c.tar.bz2
nixpkgs-3881f13ad6392bf067e1b5e299de6146e059f90c.tar.lz
nixpkgs-3881f13ad6392bf067e1b5e299de6146e059f90c.tar.xz
nixpkgs-3881f13ad6392bf067e1b5e299de6146e059f90c.tar.zst
nixpkgs-3881f13ad6392bf067e1b5e299de6146e059f90c.zip
Updating the nvidia legacy drivers. Without this update, the drivers
did not work with xorg-server-1.7

svn path=/nixpkgs/trunk/; revision=18574
-rw-r--r--pkgs/os-specific/linux/nvidia-x11/legacy.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/os-specific/linux/nvidia-x11/legacy.nix b/pkgs/os-specific/linux/nvidia-x11/legacy.nix
index 3bf5669adc4..f3a2c49811b 100644
--- a/pkgs/os-specific/linux/nvidia-x11/legacy.nix
+++ b/pkgs/os-specific/linux/nvidia-x11/legacy.nix
@@ -2,7 +2,7 @@
 
 let 
 
-  versionNumber = "96.43.13";
+  versionNumber = "96.43.14";
 
 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 = "1l0z1qik3vy2agjq86jwcpdn8qz16j1xpzvjzaiyc9ccdskbvm87";
+        sha256 = "0v93ijdpgh3vpbhrikzync6pws5i471ykqbpp7gahv7hf51z61kr";
       }
     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 = "0xi90qc32a9im8v6j28k2kj8y4wgc3aqkjxfd3ii5jn629ba18l0";
+        sha256 = "0m5gj8wb1w5rwh2qi5bvkxlwy9igwfjifjyyqkd17x0v0rw6iyhr";
       }
     else throw "nvidia-x11 does not support platform ${stdenv.system}";