2015-09-15 10:26:18 +01:00
|
|
|
{ stdenv, fetchurl, kernel ? null, xorg, zlib, perl
|
2012-03-14 21:57:32 +00:00
|
|
|
, gtk, atk, pango, glib, gdk_pixbuf
|
2010-05-30 22:56:56 +01:00
|
|
|
, # Whether to build the libraries only (i.e. not the kernel module or
|
|
|
|
# nvidia-settings). Used to support 32-bit binaries on 64-bit
|
|
|
|
# Linux.
|
|
|
|
libsOnly ? false
|
|
|
|
}:
|
2007-05-28 15:10:46 +01:00
|
|
|
|
2010-05-30 22:56:56 +01:00
|
|
|
with stdenv.lib;
|
2007-07-12 12:52:34 +01:00
|
|
|
|
2014-02-16 08:53:15 +00:00
|
|
|
assert (!libsOnly) -> kernel != null;
|
|
|
|
|
2013-07-17 10:10:21 +01:00
|
|
|
let
|
2008-01-07 22:54:30 +00:00
|
|
|
|
2015-02-16 10:48:19 +00:00
|
|
|
versionNumber = "340.76";
|
2014-11-24 21:34:00 +00:00
|
|
|
/* This branch is needed for G8x, G9x, and GT2xx GPUs, and motherboard chipsets based on them.
|
|
|
|
Ongoing support for new Linux kernels and X servers, as well as fixes for critical bugs,
|
|
|
|
will be included in 340.* legacy releases through the end of 2019.
|
|
|
|
*/
|
2014-08-20 22:27:37 +01:00
|
|
|
inherit (stdenv.lib) makeLibraryPath;
|
2013-07-17 10:10:21 +01:00
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2014-01-05 01:57:21 +00:00
|
|
|
name = "nvidia-x11-${versionNumber}${optionalString (!libsOnly) "-${kernel.version}"}";
|
2012-09-13 15:23:34 +01:00
|
|
|
|
2014-11-24 21:34:00 +00:00
|
|
|
builder = ./builder-legacy340.sh;
|
2012-09-13 15:23:34 +01:00
|
|
|
|
2015-07-03 08:28:07 +01:00
|
|
|
patches = [ ./nvidia-340.76-kernel-4.0.patch ];
|
|
|
|
|
2008-06-12 15:04:06 +01:00
|
|
|
src =
|
|
|
|
if stdenv.system == "i686-linux" then
|
|
|
|
fetchurl {
|
2010-07-18 21:21:18 +01:00
|
|
|
url = "http://us.download.nvidia.com/XFree86/Linux-x86/${versionNumber}/NVIDIA-Linux-x86-${versionNumber}.run";
|
2015-02-16 10:48:19 +00:00
|
|
|
sha256 = "1l1nn340hc8iwlzb16gcm2xvnvkw7rf84ll89bcax70094xxjacv";
|
2008-06-12 15:04:06 +01:00
|
|
|
}
|
|
|
|
else if stdenv.system == "x86_64-linux" then
|
|
|
|
fetchurl {
|
2010-07-18 21:21:18 +01:00
|
|
|
url = "http://us.download.nvidia.com/XFree86/Linux-x86_64/${versionNumber}/NVIDIA-Linux-x86_64-${versionNumber}-no-compat32.run";
|
2015-02-16 10:48:19 +00:00
|
|
|
sha256 = "016hnsgrcm4ly0mnkcd6c1qkciy3qmbwdwy4rlwq3m6dh4ixw7jc";
|
2008-06-12 15:04:06 +01:00
|
|
|
}
|
|
|
|
else throw "nvidia-x11 does not support platform ${stdenv.system}";
|
2008-05-29 14:22:12 +01:00
|
|
|
|
2010-05-30 22:56:56 +01:00
|
|
|
inherit versionNumber libsOnly;
|
|
|
|
|
2014-01-05 01:57:21 +00:00
|
|
|
kernel = if libsOnly then null else kernel.dev;
|
2007-05-28 15:10:46 +01:00
|
|
|
|
2008-03-04 10:06:21 +00:00
|
|
|
dontStrip = true;
|
|
|
|
|
2015-09-15 10:26:18 +01:00
|
|
|
glPath = makeLibraryPath [xorg.libXext xorg.libX11 xorg.libXrandr];
|
2015-01-15 04:25:26 +00:00
|
|
|
cudaPath = makeLibraryPath [zlib stdenv.cc.cc];
|
2014-08-20 22:27:37 +01:00
|
|
|
openclPath = makeLibraryPath [zlib];
|
2015-09-15 10:26:18 +01:00
|
|
|
allLibPath = makeLibraryPath [xorg.libXext xorg.libX11 xorg.libXrandr zlib stdenv.cc.cc];
|
2008-06-04 10:59:33 +01:00
|
|
|
|
2014-08-20 22:27:37 +01:00
|
|
|
programPath = optionalString (!libsOnly) (makeLibraryPath
|
2015-09-15 10:26:18 +01:00
|
|
|
[ gtk atk pango glib gdk_pixbuf xorg.libXv ] );
|
2008-08-07 17:47:08 +01:00
|
|
|
|
2009-12-18 11:36:36 +00:00
|
|
|
buildInputs = [ perl ];
|
|
|
|
|
2014-02-16 09:00:56 +00:00
|
|
|
meta = with stdenv.lib.meta; {
|
2008-08-07 17:47:08 +01:00
|
|
|
homepage = http://www.nvidia.com/object/unix.html;
|
|
|
|
description = "X.org driver and kernel module for NVIDIA graphics cards";
|
2014-02-16 09:00:56 +00:00
|
|
|
license = licenses.unfreeRedistributable;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.vcunat ];
|
2008-08-07 17:47:08 +01:00
|
|
|
};
|
2007-05-28 15:10:46 +01:00
|
|
|
}
|