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