2016-08-24 11:35:30 +00:00
|
|
|
{ stdenv, fetchurl, fetchpatch
|
|
|
|
, pkgconfig, intltool, autoreconfHook, substituteAll
|
2016-11-14 22:53:58 +00:00
|
|
|
, file, expat, libdrm, xorg, wayland, openssl
|
2016-08-24 11:35:30 +00:00
|
|
|
, llvmPackages, libffi, libomxil-bellagio, libva
|
2016-10-17 13:40:18 +00:00
|
|
|
, libelf, libvdpau, python2
|
2016-08-24 11:35:30 +00:00
|
|
|
, grsecEnabled ? false
|
2013-05-16 15:16:02 +00:00
|
|
|
, enableTextureFloats ? false # Texture floats are patented, see docs/patents.txt
|
|
|
|
}:
|
2004-06-09 17:53:30 +00:00
|
|
|
|
|
|
|
|
2013-05-16 15:16:02 +00:00
|
|
|
/** Packaging design:
|
|
|
|
- The basic mesa ($out) contains headers and libraries (GLU is in mesa_glu now).
|
2014-01-28 10:34:05 +00:00
|
|
|
This or the mesa attribute (which also contains GLU) are small (~ 2 MB, mostly headers)
|
2013-05-16 15:16:02 +00:00
|
|
|
and are designed to be the buildInput of other packages.
|
2015-02-22 18:11:38 +00:00
|
|
|
- DRI drivers are compiled into $drivers output, which is much bigger and
|
|
|
|
depends on LLVM. These should be searched at runtime in
|
|
|
|
"/run/opengl-driver{,-32}/lib/*" and so are kind-of impure (given by NixOS).
|
2013-05-16 15:16:02 +00:00
|
|
|
(I suppose on non-NixOS one would create the appropriate symlinks from there.)
|
2014-01-28 10:34:05 +00:00
|
|
|
- libOSMesa is in $osmesa (~4 MB)
|
2013-05-16 15:16:02 +00:00
|
|
|
*/
|
|
|
|
|
2016-08-24 11:35:30 +00:00
|
|
|
with stdenv.lib;
|
|
|
|
|
|
|
|
if ! lists.elem stdenv.system platforms.mesaPlatforms then
|
|
|
|
throw "unsupported platform for Mesa"
|
|
|
|
else
|
2015-04-14 20:41:22 +00:00
|
|
|
|
2013-01-28 16:38:42 +00:00
|
|
|
let
|
2017-01-06 20:05:08 +00:00
|
|
|
version = "13.0.3";
|
2016-08-24 11:35:30 +00:00
|
|
|
branch = head (splitString "." version);
|
2015-04-14 20:41:22 +00:00
|
|
|
driverLink = "/run/opengl-driver" + optionalString stdenv.isi686 "-32";
|
2013-01-28 16:38:42 +00:00
|
|
|
in
|
2013-10-05 19:18:07 +00:00
|
|
|
|
2013-01-28 16:38:42 +00:00
|
|
|
stdenv.mkDerivation {
|
2013-03-24 11:36:33 +00:00
|
|
|
name = "mesa-noglu-${version}";
|
2010-04-29 14:57:02 +00:00
|
|
|
|
2013-10-05 19:18:07 +00:00
|
|
|
src = fetchurl {
|
2015-01-24 21:37:16 +00:00
|
|
|
urls = [
|
2015-03-28 20:57:03 +00:00
|
|
|
"ftp://ftp.freedesktop.org/pub/mesa/${version}/mesa-${version}.tar.xz"
|
2016-08-24 11:35:30 +00:00
|
|
|
"ftp://ftp.freedesktop.org/pub/mesa/older-versions/${branch}.x/${version}/mesa-${version}.tar.xz"
|
2015-12-25 00:32:44 +00:00
|
|
|
"https://launchpad.net/mesa/trunk/${version}/+download/mesa-${version}.tar.xz"
|
2015-01-24 21:37:16 +00:00
|
|
|
];
|
2017-01-06 20:05:08 +00:00
|
|
|
sha256 = "d9aa8be5c176d00d0cd503cb2f64a5a403ea471ec819c022581414860d7ba40e";
|
2007-02-26 17:05:27 +00:00
|
|
|
};
|
2010-01-13 12:43:17 +00:00
|
|
|
|
2012-01-16 17:48:33 +00:00
|
|
|
prePatch = "patchShebangs .";
|
2011-07-14 12:22:55 +00:00
|
|
|
|
2016-08-24 11:35:30 +00:00
|
|
|
# TODO:
|
|
|
|
# revive ./dricore-gallium.patch when it gets ported (from Ubuntu), as it saved
|
|
|
|
# ~35 MB in $drivers; watch https://launchpad.net/ubuntu/+source/mesa/+changelog
|
2014-01-28 10:34:05 +00:00
|
|
|
patches = [
|
2014-01-26 11:27:50 +00:00
|
|
|
./glx_ro_text_segm.patch # fix for grsecurity/PaX
|
2016-05-22 16:05:12 +00:00
|
|
|
./symlink-drivers.patch
|
2016-11-14 14:46:33 +00:00
|
|
|
];
|
2013-05-16 15:16:02 +00:00
|
|
|
|
|
|
|
postPatch = ''
|
2015-02-22 18:11:38 +00:00
|
|
|
substituteInPlace src/egl/main/egldriver.c \
|
|
|
|
--replace _EGL_DRIVER_SEARCH_DIR '"${driverLink}"'
|
2013-05-16 15:16:02 +00:00
|
|
|
'';
|
|
|
|
|
2016-08-29 00:30:01 +00:00
|
|
|
outputs = [ "out" "dev" "drivers" "osmesa" ];
|
2013-05-16 15:16:02 +00:00
|
|
|
|
2016-08-24 11:35:30 +00:00
|
|
|
# TODO: Figure out how to enable opencl without having a runtime dependency on clang
|
2013-10-05 19:18:07 +00:00
|
|
|
configureFlags = [
|
2015-03-28 20:57:03 +00:00
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--localstatedir=/var"
|
2013-05-16 15:16:02 +00:00
|
|
|
"--with-dri-driverdir=$(drivers)/lib/dri"
|
|
|
|
"--with-dri-searchpath=${driverLink}/lib/dri"
|
2016-08-24 11:35:30 +00:00
|
|
|
"--with-egl-platforms=x11,wayland,drm"
|
2016-10-05 22:33:10 +00:00
|
|
|
]
|
|
|
|
++ optionals (stdenv.system != "armv7l-linux") [
|
|
|
|
"--with-gallium-drivers=svga,i915,ilo,r300,r600,radeonsi,nouveau,freedreno,swrast"
|
|
|
|
"--with-dri-drivers=i915,i965,nouveau,radeon,r200,swrast"
|
|
|
|
"--with-vulkan-drivers=intel"
|
|
|
|
]
|
|
|
|
++ [
|
2016-08-24 11:35:30 +00:00
|
|
|
(enableFeature enableTextureFloats "texture-float")
|
|
|
|
(enableFeature grsecEnabled "glx-rts")
|
|
|
|
(enableFeature stdenv.isLinux "dri3")
|
|
|
|
(enableFeature stdenv.isLinux "nine") # Direct3D in Wine
|
|
|
|
"--enable-dri"
|
|
|
|
"--enable-driglx-direct"
|
2015-03-28 20:57:03 +00:00
|
|
|
"--enable-gles1"
|
|
|
|
"--enable-gles2"
|
|
|
|
"--enable-glx"
|
2016-08-24 11:35:30 +00:00
|
|
|
"--enable-glx-tls"
|
2015-03-28 20:57:03 +00:00
|
|
|
"--enable-gallium-osmesa" # used by wine
|
2016-08-24 11:35:30 +00:00
|
|
|
"--enable-gallium-llvm"
|
2015-03-28 20:57:03 +00:00
|
|
|
"--enable-egl"
|
2013-05-22 15:09:00 +00:00
|
|
|
"--enable-xa" # used in vmware driver
|
2015-03-28 20:57:03 +00:00
|
|
|
"--enable-gbm"
|
|
|
|
"--enable-xvmc"
|
2013-11-16 20:23:10 +00:00
|
|
|
"--enable-vdpau"
|
2015-03-28 20:57:03 +00:00
|
|
|
"--enable-shared-glapi"
|
|
|
|
"--enable-sysfs"
|
|
|
|
"--enable-llvm-shared-libs"
|
2016-08-24 11:35:30 +00:00
|
|
|
"--enable-omx"
|
|
|
|
"--enable-va"
|
|
|
|
"--disable-opencl"
|
|
|
|
];
|
2012-01-16 17:48:33 +00:00
|
|
|
|
2015-04-14 20:41:22 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig file ];
|
2013-05-16 15:16:02 +00:00
|
|
|
|
2016-08-24 11:35:30 +00:00
|
|
|
propagatedBuildInputs = with xorg;
|
|
|
|
[ libXdamage libXxf86vm ]
|
2015-04-14 20:41:22 +00:00
|
|
|
++ optional stdenv.isLinux libdrm;
|
2015-03-28 20:57:03 +00:00
|
|
|
|
2013-05-16 15:16:02 +00:00
|
|
|
buildInputs = with xorg; [
|
2015-04-14 20:41:22 +00:00
|
|
|
autoreconfHook intltool expat llvmPackages.llvm
|
2014-04-19 11:03:50 +00:00
|
|
|
glproto dri2proto dri3proto presentproto
|
|
|
|
libX11 libXext libxcb libXt libXfixes libxshmfence
|
2016-08-24 11:35:30 +00:00
|
|
|
libffi wayland libvdpau libelf libXvMC
|
2016-10-05 22:33:10 +00:00
|
|
|
libomxil-bellagio libva libpthreadstubs openssl/*or another sha1 provider*/
|
2016-10-17 13:40:18 +00:00
|
|
|
(python2.withPackages (ps: [ ps.Mako ]))
|
2016-11-14 22:53:58 +00:00
|
|
|
];
|
2010-04-29 14:57:02 +00:00
|
|
|
|
2016-08-24 11:35:30 +00:00
|
|
|
|
2011-02-18 09:16:11 +00:00
|
|
|
enableParallelBuilding = true;
|
2015-02-22 18:11:38 +00:00
|
|
|
doCheck = false;
|
2013-05-16 15:16:02 +00:00
|
|
|
|
2015-04-15 04:38:47 +00:00
|
|
|
installFlags = [
|
|
|
|
"sysconfdir=\${out}/etc"
|
|
|
|
"localstatedir=\${TMPDIR}"
|
|
|
|
];
|
2013-05-16 15:16:02 +00:00
|
|
|
|
2016-08-24 11:35:30 +00:00
|
|
|
# TODO: probably not all .la files are completely fixed, but it shouldn't matter;
|
|
|
|
postInstall = ''
|
|
|
|
# move gallium-related stuff to $drivers, so $out doesn't depend on LLVM
|
|
|
|
mv -t "$drivers/lib/" \
|
|
|
|
$out/lib/libXvMC* \
|
|
|
|
$out/lib/d3d \
|
|
|
|
$out/lib/vdpau \
|
|
|
|
$out/lib/bellagio \
|
|
|
|
$out/lib/libxatracker* \
|
2016-11-21 20:14:19 +00:00
|
|
|
$out/lib/libvulkan_*
|
2016-10-05 22:33:10 +00:00
|
|
|
|
|
|
|
# move share/vulkan/icd.d/
|
|
|
|
mv $out/share/ $drivers/
|
2016-11-21 20:14:19 +00:00
|
|
|
# Update search path used by Vulkan (it's pointing to $out but
|
|
|
|
# drivers are in $drivers)
|
|
|
|
for js in $drivers/share/vulkan/icd.d/*.json; do
|
|
|
|
substituteInPlace "$js" --replace "$out" "$drivers"
|
|
|
|
done
|
2016-08-24 11:35:30 +00:00
|
|
|
|
2016-11-21 20:14:19 +00:00
|
|
|
mv $out/lib/dri/* $drivers/lib/dri # */
|
2016-10-05 22:33:10 +00:00
|
|
|
rmdir "$out/lib/dri"
|
2013-05-22 15:09:00 +00:00
|
|
|
|
2016-08-24 11:35:30 +00:00
|
|
|
# move libOSMesa to $osmesa, as it's relatively big
|
2015-10-04 07:52:46 +00:00
|
|
|
mkdir -p {$osmesa,$drivers}/lib/
|
2016-08-24 11:35:30 +00:00
|
|
|
mv -t $osmesa/lib/ $out/lib/libOSMesa*
|
2013-11-17 09:53:41 +00:00
|
|
|
|
2016-08-24 11:35:30 +00:00
|
|
|
# now fix references in .la files
|
|
|
|
sed "/^libdir=/s,$out,$osmesa," -i $osmesa/lib/libOSMesa*.la
|
2013-11-17 09:53:41 +00:00
|
|
|
|
2016-08-24 11:35:30 +00:00
|
|
|
# set the default search path for DRI drivers; used e.g. by X server
|
2015-10-04 07:52:46 +00:00
|
|
|
substituteInPlace "$dev/lib/pkgconfig/dri.pc" --replace '$(drivers)' "${driverLink}"
|
2015-04-14 20:41:22 +00:00
|
|
|
'';
|
2013-05-22 15:09:00 +00:00
|
|
|
|
2016-08-24 11:35:30 +00:00
|
|
|
# TODO:
|
|
|
|
# @vcunat isn't sure if drirc will be found when in $out/etc/;
|
|
|
|
# check $out doesn't depend on llvm: builder failures are ignored
|
|
|
|
# for some reason grep -qv '${llvmPackages.llvm}' -R "$out";
|
|
|
|
postFixup = ''
|
2015-04-14 20:41:22 +00:00
|
|
|
# add RPATH so the drivers can find the moved libgallium and libdricore9
|
|
|
|
# moved here to avoid problems with stripping patchelfed files
|
2013-05-16 15:16:02 +00:00
|
|
|
for lib in $drivers/lib/*.so* $drivers/lib/*/*.so*; do
|
|
|
|
if [[ ! -L "$lib" ]]; then
|
|
|
|
patchelf --set-rpath "$(patchelf --print-rpath $lib):$drivers/lib" "$lib"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
'';
|
2011-02-18 09:16:11 +00:00
|
|
|
|
2013-07-04 09:37:25 +00:00
|
|
|
passthru = { inherit libdrm version driverLink; };
|
2010-04-29 14:57:02 +00:00
|
|
|
|
2015-04-14 20:41:22 +00:00
|
|
|
meta = with stdenv.lib; {
|
2008-03-01 17:44:50 +00:00
|
|
|
description = "An open source implementation of OpenGL";
|
2007-11-05 23:59:55 +00:00
|
|
|
homepage = http://www.mesa3d.org/;
|
2015-04-14 20:41:22 +00:00
|
|
|
license = licenses.mit; # X11 variant, in most files
|
|
|
|
platforms = platforms.mesaPlatforms;
|
2016-05-16 20:30:20 +00:00
|
|
|
maintainers = with maintainers; [ eduarrrd vcunat ];
|
2007-11-05 23:59:55 +00:00
|
|
|
};
|
2004-06-09 17:53:30 +00:00
|
|
|
}
|