2014-01-05 02:57:21 +01:00
|
|
|
{ stdenv, fetchurl, kernel ? null, xlibs, zlib, perl
|
2012-03-14 22:57:32 +01:00
|
|
|
, gtk, atk, pango, glib, gdk_pixbuf
|
2010-05-30 23:56:56 +02: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 16:10:46 +02:00
|
|
|
|
2010-05-30 23:56:56 +02:00
|
|
|
with stdenv.lib;
|
2007-07-12 13:52:34 +02:00
|
|
|
|
2013-07-17 11:10:21 +02:00
|
|
|
let
|
2008-01-07 23:54:30 +01:00
|
|
|
|
2013-11-13 12:58:15 +01:00
|
|
|
versionNumber = "331.20";
|
2013-08-26 22:55:14 +02:00
|
|
|
|
2013-07-17 11:10:21 +02:00
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2014-01-05 02:57:21 +01:00
|
|
|
name = "nvidia-x11-${versionNumber}${optionalString (!libsOnly) "-${kernel.version}"}";
|
2012-09-13 16:23:34 +02:00
|
|
|
|
2007-05-28 16:10:46 +02:00
|
|
|
builder = ./builder.sh;
|
2012-09-13 16:23:34 +02:00
|
|
|
|
2008-06-12 16:04:06 +02:00
|
|
|
src =
|
|
|
|
if stdenv.system == "i686-linux" then
|
|
|
|
fetchurl {
|
2010-07-18 22:21:18 +02:00
|
|
|
url = "http://us.download.nvidia.com/XFree86/Linux-x86/${versionNumber}/NVIDIA-Linux-x86-${versionNumber}.run";
|
2013-11-13 12:58:15 +01:00
|
|
|
sha256 = "0icpmfsppnsvk7vj0fshi3ry4s1wix435s2c8wwak47765fv1mks";
|
2008-06-12 16:04:06 +02:00
|
|
|
}
|
|
|
|
else if stdenv.system == "x86_64-linux" then
|
|
|
|
fetchurl {
|
2010-07-18 22:21:18 +02:00
|
|
|
url = "http://us.download.nvidia.com/XFree86/Linux-x86_64/${versionNumber}/NVIDIA-Linux-x86_64-${versionNumber}-no-compat32.run";
|
2013-11-13 12:58:15 +01:00
|
|
|
sha256 = "02503dis3ngraqv7174a4pay2x08hp697n9q74rpjjclf5k74ax1";
|
2008-06-12 16:04:06 +02:00
|
|
|
}
|
|
|
|
else throw "nvidia-x11 does not support platform ${stdenv.system}";
|
2008-05-29 15:22:12 +02:00
|
|
|
|
2010-05-30 23:56:56 +02:00
|
|
|
inherit versionNumber libsOnly;
|
|
|
|
|
2014-01-05 02:57:21 +01:00
|
|
|
kernel = if libsOnly then null else kernel.dev;
|
2007-05-28 16:10:46 +02:00
|
|
|
|
2008-03-04 11:06:21 +01:00
|
|
|
dontStrip = true;
|
|
|
|
|
2009-06-16 14:51:35 +02:00
|
|
|
glPath = stdenv.lib.makeLibraryPath [xlibs.libXext xlibs.libX11 xlibs.libXrandr];
|
2008-06-04 11:59:33 +02:00
|
|
|
|
|
|
|
cudaPath = stdenv.lib.makeLibraryPath [zlib stdenv.gcc.gcc];
|
|
|
|
|
2013-02-01 13:57:59 +01:00
|
|
|
openclPath = stdenv.lib.makeLibraryPath [zlib];
|
|
|
|
|
2010-05-30 23:56:56 +02:00
|
|
|
programPath = optionalString (!libsOnly) (stdenv.lib.makeLibraryPath
|
2012-03-14 22:57:32 +01:00
|
|
|
[ gtk atk pango glib gdk_pixbuf xlibs.libXv ] );
|
2008-08-07 18:47:08 +02:00
|
|
|
|
2009-12-18 12:36:36 +01:00
|
|
|
buildInputs = [ perl ];
|
|
|
|
|
2008-08-07 18:47:08 +02:00
|
|
|
meta = {
|
|
|
|
homepage = http://www.nvidia.com/object/unix.html;
|
|
|
|
description = "X.org driver and kernel module for NVIDIA graphics cards";
|
2013-03-24 22:47:12 +01:00
|
|
|
license = stdenv.lib.licenses.unfreeRedistributable;
|
2013-11-04 23:31:08 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
hydraPlatforms = [];
|
2008-08-07 18:47:08 +02:00
|
|
|
};
|
2007-05-28 16:10:46 +02:00
|
|
|
}
|