2010-05-30 23:56:56 +02:00
|
|
|
{ stdenv, fetchurl, kernel ? null, xlibs, gtkLibs, zlib, perl
|
|
|
|
, # 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
|
|
|
|
2011-03-07 17:51:54 +01:00
|
|
|
let versionNumber = "260.19.44"; in
|
2008-01-07 23:54:30 +01:00
|
|
|
|
2007-05-28 16:10:46 +02:00
|
|
|
stdenv.mkDerivation {
|
2010-05-30 23:56:56 +02:00
|
|
|
name = "nvidia-x11-${versionNumber}${optionalString (!libsOnly) "-${kernel.version}"}";
|
2008-06-12 16:04:06 +02:00
|
|
|
|
2007-05-28 16:10:46 +02:00
|
|
|
builder = ./builder.sh;
|
|
|
|
|
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";
|
2011-03-07 17:51:54 +01:00
|
|
|
sha256 = "06sp7wi1q2sh00r0nm340zpfjhngf4qifflbnk2ai88gb6zrpi54";
|
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";
|
2011-03-07 17:51:54 +01:00
|
|
|
sha256 = "0hqp56sf61wc9fn3zdvc0lr8w170p36mmf9irgpz0g96qwnic2z9";
|
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;
|
|
|
|
|
|
|
|
kernel = if libsOnly then null else kernel;
|
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];
|
|
|
|
|
2010-05-30 23:56:56 +02:00
|
|
|
programPath = optionalString (!libsOnly) (stdenv.lib.makeLibraryPath
|
2011-03-08 10:15:02 +01:00
|
|
|
[ gtkLibs.gtk gtkLibs.atk gtkLibs.pango gtkLibs.glib gtkLibs.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";
|
2009-03-03 14:27:40 +01:00
|
|
|
license = "unfree";
|
2008-08-07 18:47:08 +02:00
|
|
|
};
|
2007-05-28 16:10:46 +02:00
|
|
|
}
|