summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-02-09 21:41:47 -0800
committerWilliam A. Kennington III <william@wkennington.com>2015-02-09 21:41:47 -0800
commiteeb5319a43b9a1757b2ae33a71b142ab4b45fceb (patch)
treecdc13f30a0eb52ccf5644333692ad78526c84f20 /pkgs/os-specific
parentd49405a5abf7f4c63b9f9a5836e9790824f6406c (diff)
downloadnixpkgs-eeb5319a43b9a1757b2ae33a71b142ab4b45fceb.tar
nixpkgs-eeb5319a43b9a1757b2ae33a71b142ab4b45fceb.tar.gz
nixpkgs-eeb5319a43b9a1757b2ae33a71b142ab4b45fceb.tar.bz2
nixpkgs-eeb5319a43b9a1757b2ae33a71b142ab4b45fceb.tar.lz
nixpkgs-eeb5319a43b9a1757b2ae33a71b142ab4b45fceb.tar.xz
nixpkgs-eeb5319a43b9a1757b2ae33a71b142ab4b45fceb.tar.zst
nixpkgs-eeb5319a43b9a1757b2ae33a71b142ab4b45fceb.zip
nvidia_x11: 343.36 -> 346.35
Diffstat (limited to 'pkgs/os-specific')
-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 63cb33a52a2..f8b6327a654 100644
--- a/pkgs/os-specific/linux/nvidia-x11/default.nix
+++ b/pkgs/os-specific/linux/nvidia-x11/default.nix
@@ -12,7 +12,7 @@ assert (!libsOnly) -> kernel != null;
 
 let
 
-  versionNumber = "343.36";
+  versionNumber = "346.35";
   # Policy: use the highest stable version as the default (on our master).
   inherit (stdenv.lib) makeLibraryPath;
 in
@@ -26,12 +26,12 @@ stdenv.mkDerivation {
     if stdenv.system == "i686-linux" then
       fetchurl {
         url = "http://us.download.nvidia.com/XFree86/Linux-x86/${versionNumber}/NVIDIA-Linux-x86-${versionNumber}.run";
-        sha256 = "17l23dp725883xcyy1n178pcl6lj27psrgbxymc356x2pngwkhcc";
+        sha256 = "09fz8nydi8ip3yv7dmbwnpwvjql5wp582z57022ppb9hqwq3r9mv";
       }
     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}-no-compat32.run";
-        sha256 = "0djvh9wmazrfvpgyiqrz81kjk2war20xyjjr2kncxyplzk28mw97";
+        sha256 = "1z9a69a9xbcrz925mj02l2qaqcnhxzh2msbq4hf73p7x4h94ibkx";
       }
     else throw "nvidia-x11 does not support platform ${stdenv.system}";