2014-01-05 01:57:21 +00:00
|
|
|
{ stdenv, fetchurl, kernel ? null, xlibs, 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
|
|
|
|
2014-03-20 16:56:32 +00:00
|
|
|
versionNumber = "331.49";
|
2013-08-26 21:55:14 +01:00
|
|
|
|
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
|
|
|
|
2007-05-28 15:10:46 +01:00
|
|
|
builder = ./builder.sh;
|
2012-09-13 15:23:34 +01:00
|
|
|
|
2014-04-02 12:35:44 +01:00
|
|
|
patches = optional (kernel ? version && versionAtLeast kernel.version "3.14") ./kernel-3.14.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";
|
2014-03-20 16:56:32 +00:00
|
|
|
sha256 = "00d7bq8cfxk52qd4y226fz8m9m3mjq45fbgr3q7k08jyy9qmswmn";
|
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";
|
2014-03-20 16:56:32 +00:00
|
|
|
sha256 = "0q3lvl1lypi33i847nqz4k3161ackh2n9kgyjn6v2c480f405hfk";
|
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;
|
|
|
|
|
2009-06-16 13:51:35 +01:00
|
|
|
glPath = stdenv.lib.makeLibraryPath [xlibs.libXext xlibs.libX11 xlibs.libXrandr];
|
2008-06-04 10:59:33 +01:00
|
|
|
|
|
|
|
cudaPath = stdenv.lib.makeLibraryPath [zlib stdenv.gcc.gcc];
|
|
|
|
|
2013-02-01 12:57:59 +00:00
|
|
|
openclPath = stdenv.lib.makeLibraryPath [zlib];
|
|
|
|
|
2010-05-30 22:56:56 +01:00
|
|
|
programPath = optionalString (!libsOnly) (stdenv.lib.makeLibraryPath
|
2012-03-14 21:57:32 +00:00
|
|
|
[ gtk atk pango glib gdk_pixbuf xlibs.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
|
|
|
}
|