2014-01-05 01:57:21 +00:00
|
|
|
{ stdenv, fetchurl, kernel, xlibs, which, imake
|
2010-05-18 20:36:55 +01:00
|
|
|
, mesa # for fgl_glxgears
|
|
|
|
, libXxf86vm, xf86vidmodeproto # for fglrx_gamma
|
|
|
|
, xorg, makeWrapper, glibc, patchelf
|
2012-10-07 17:03:06 +01:00
|
|
|
, unzip
|
2010-05-18 20:36:55 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
# If you want to use a different Xorg version probably
|
|
|
|
# DIR_DEPENDING_ON_XORG_VERSION in builder.sh has to be adopted (?)
|
|
|
|
# make sure libglx.so of ati is used. xorg.xorgserver does provide it as well
|
|
|
|
# which is a problem because it doesn't contain the xorgserver patch supporting
|
|
|
|
# the XORG_DRI_DRIVER_PATH env var.
|
|
|
|
# See http://thread.gmane.org/gmane.linux.distributions.nixos/4145 for a
|
|
|
|
# workaround (TODO)
|
|
|
|
|
2014-01-22 09:57:43 +00:00
|
|
|
# The gentoo ebuild contains much more magic and is usually a great resource to
|
|
|
|
# find patches :)
|
2010-05-18 20:36:55 +01:00
|
|
|
|
|
|
|
# http://wiki.cchtml.com/index.php/Main_Page
|
|
|
|
|
2012-10-07 17:03:06 +01:00
|
|
|
# There is one issue left:
|
|
|
|
# /usr/lib/dri/fglrx_dri.so must point to /run/opengl-driver/lib/fglrx_dri.so
|
|
|
|
|
2014-01-22 09:57:43 +00:00
|
|
|
assert stdenv.system == "x86_64-linux";
|
2014-01-05 01:57:21 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2014-09-04 04:11:30 +01:00
|
|
|
name = "ati-drivers-14.4-${kernel.version}";
|
2010-05-18 20:36:55 +01:00
|
|
|
|
|
|
|
builder = ./builder.sh;
|
|
|
|
|
|
|
|
inherit libXxf86vm xf86vidmodeproto;
|
2014-01-22 09:57:43 +00:00
|
|
|
gcc = stdenv.gcc.gcc;
|
2010-05-18 20:36:55 +01:00
|
|
|
|
2012-02-17 14:32:28 +00:00
|
|
|
src = fetchurl {
|
2014-09-04 04:11:30 +01:00
|
|
|
url = http://www2.ati.com/drivers/linux/amd-catalyst-14-4-rev2-linux-x86-x86-64-may6.zip;
|
|
|
|
sha256 = "1xbhn55yifis9b0lzb3s03hc1bcq8jmy7l96m4x8d842n7ji7qlk";
|
2013-12-13 23:59:17 +00:00
|
|
|
curlOpts = "--referer http://support.amd.com/en-us/download/desktop?os=Linux%20x86_64";
|
2010-05-18 20:36:55 +01:00
|
|
|
};
|
|
|
|
|
2014-01-22 09:57:43 +00:00
|
|
|
# most patches are taken from gentoo
|
|
|
|
patchPhase = "patch -p1 < ${./gentoo-patches.patch}";
|
|
|
|
patchPhaseSamples = "patch -p2 < ${./patch-samples.patch}";
|
2013-08-22 11:00:23 +01:00
|
|
|
|
2012-02-17 14:32:28 +00:00
|
|
|
buildInputs =
|
2013-12-13 08:32:36 +00:00
|
|
|
[ xlibs.libXext xlibs.libX11 xlibs.libXinerama
|
2012-02-17 14:32:28 +00:00
|
|
|
xlibs.libXrandr which imake makeWrapper
|
|
|
|
patchelf
|
2012-10-07 17:03:06 +01:00
|
|
|
unzip
|
2013-08-22 11:00:23 +01:00
|
|
|
mesa
|
2012-02-17 14:32:28 +00:00
|
|
|
];
|
2013-01-17 21:05:59 +00:00
|
|
|
|
2014-01-05 01:57:21 +00:00
|
|
|
kernel = kernel.dev;
|
2013-03-24 11:45:00 +00:00
|
|
|
|
|
|
|
inherit glibc /* glibc only used for setting interpreter */;
|
2013-01-17 21:05:59 +00:00
|
|
|
|
2012-02-17 14:32:28 +00:00
|
|
|
LD_LIBRARY_PATH = stdenv.lib.concatStringsSep ":"
|
2010-05-18 20:36:55 +01:00
|
|
|
[ "${xorg.libXrandr}/lib"
|
|
|
|
"${xorg.libXrender}/lib"
|
|
|
|
"${xorg.libXext}/lib"
|
|
|
|
"${xorg.libX11}/lib"
|
2013-12-13 08:32:36 +00:00
|
|
|
"${xorg.libXinerama}/lib"
|
2010-05-18 20:36:55 +01:00
|
|
|
];
|
|
|
|
|
2013-08-22 11:00:23 +01:00
|
|
|
# without this some applications like blender don't start, but they start
|
|
|
|
# with nvidia. This causes them to be symlinked to $out/lib so that they
|
|
|
|
# appear in /run/opengl-driver/lib which get's added to LD_LIBRARY_PATH
|
2014-01-22 09:57:43 +00:00
|
|
|
extraDRIlibs = [ xorg.libXext ];
|
2013-08-22 11:00:23 +01:00
|
|
|
|
2010-05-18 20:36:55 +01:00
|
|
|
inherit mesa; # only required to build examples
|
|
|
|
|
2014-01-22 09:57:43 +00:00
|
|
|
meta = with stdenv.lib; {
|
2013-01-17 21:05:59 +00:00
|
|
|
description = "ATI drivers";
|
2010-05-18 20:36:55 +01:00
|
|
|
homepage = http://support.amd.com/us/gpudownload/Pages/index.aspx;
|
2014-01-22 09:57:43 +00:00
|
|
|
license = licenses.unfree;
|
|
|
|
maintainers = with maintainers; [marcweber offline];
|
2013-11-04 23:04:36 +00:00
|
|
|
platforms = [ "x86_64-linux" ];
|
|
|
|
hydraPlatforms = [];
|
2010-05-18 20:36:55 +01:00
|
|
|
};
|
2010-05-19 11:01:07 +01:00
|
|
|
|
|
|
|
# moved assertions here because the name is evaluated when the NixOS manual is generated
|
|
|
|
# Don't make that fail - fail lazily when a users tries to build this derivation only
|
|
|
|
dummy =
|
2010-08-18 15:45:13 +01:00
|
|
|
# assert xorg.xorgserver.name == "xorg-server-1.7.5";
|
2010-05-19 11:01:07 +01:00
|
|
|
assert stdenv.system == "x86_64-linux"; # i686-linux should work as well - however I didn't test it.
|
|
|
|
null;
|
|
|
|
|
2010-05-18 20:36:55 +01:00
|
|
|
}
|