2018-07-21 00:44:44 +00:00
|
|
|
|
{ stdenv, fetchurl, lib
|
|
|
|
|
, pkgconfig, intltool, autoreconfHook
|
2017-10-07 13:19:13 +00:00
|
|
|
|
, file, expat, libdrm, xorg, wayland, wayland-protocols, openssl
|
2018-02-09 04:05:38 +00:00
|
|
|
|
, llvmPackages, libffi, libomxil-bellagio, libva-minimal
|
2019-05-09 01:47:11 +00:00
|
|
|
|
, libelf, libvdpau, python2, python2Packages
|
2018-03-17 15:44:40 +00:00
|
|
|
|
, libglvnd
|
2017-10-07 13:19:13 +00:00
|
|
|
|
, enableRadv ? true
|
2017-02-15 13:25:16 +00:00
|
|
|
|
, galliumDrivers ? null
|
|
|
|
|
, driDrivers ? null
|
|
|
|
|
, vulkanDrivers ? null
|
2018-08-25 20:53:30 +00:00
|
|
|
|
, eglPlatforms ? [ "x11" ] ++ lib.optionals stdenv.isLinux [ "wayland" "drm" ]
|
|
|
|
|
, OpenGL, Xplugin
|
2019-05-09 01:47:11 +00:00
|
|
|
|
, withValgrind ? stdenv.hostPlatform.isLinux && !stdenv.hostPlatform.isAarch32, valgrind-light
|
2013-05-16 15:16:02 +00:00
|
|
|
|
}:
|
2004-06-09 17:53:30 +00:00
|
|
|
|
|
2013-05-16 15:16:02 +00:00
|
|
|
|
/** Packaging design:
|
2018-03-05 13:53:38 +00:00
|
|
|
|
- The basic mesa ($out) contains headers and libraries (GLU is in libGLU 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;
|
|
|
|
|
|
2017-02-15 13:25:16 +00:00
|
|
|
|
let
|
2018-08-22 21:48:38 +00:00
|
|
|
|
# platforms that have PCIe slots and thus can use most non-integrated GPUs
|
2019-05-02 21:37:20 +00:00
|
|
|
|
pciePlatform = !stdenv.hostPlatform.isAarch32 && !stdenv.hostPlatform.isAarch64;
|
|
|
|
|
defaultGalliumDrivers = optionals (elem "drm" eglPlatforms) ([ "virgl" ]
|
2018-08-22 21:48:38 +00:00
|
|
|
|
++ lib.optionals pciePlatform [ "r300" "r600" "radeonsi" ]
|
2019-05-02 21:37:20 +00:00
|
|
|
|
++ lib.optionals (pciePlatform || stdenv.hostPlatform.isAarch32 || stdenv.hostPlatform.isAarch64) [ "nouveau" ]
|
|
|
|
|
++ lib.optionals stdenv.hostPlatform.isx86 [ "i915" "svga" ]
|
|
|
|
|
++ lib.optionals (stdenv.hostPlatform.isAarch32 || stdenv.hostPlatform.isAarch64) [ "vc4" ]
|
|
|
|
|
++ lib.optionals stdenv.hostPlatform.isAarch64 [ "freedreno" "etnaviv" "imx" ]
|
|
|
|
|
);
|
|
|
|
|
defaultDriDrivers = optionals (elem "drm" eglPlatforms) ([ ]
|
2018-08-22 21:48:38 +00:00
|
|
|
|
++ lib.optionals pciePlatform [ "radeon" "r200" ]
|
2019-05-02 21:37:20 +00:00
|
|
|
|
++ lib.optionals (pciePlatform || stdenv.hostPlatform.isAarch32 || stdenv.hostPlatform.isAarch64) [ "nouveau" ]
|
|
|
|
|
++ lib.optionals stdenv.hostPlatform.isx86 [ "i915" "i965" ]);
|
|
|
|
|
defaultVulkanDrivers = optionals stdenv.hostPlatform.isLinux ([ ]
|
|
|
|
|
++ lib.optional stdenv.hostPlatform.isx86 "intel"
|
|
|
|
|
++ lib.optional enableRadv "radeon");
|
2017-02-15 13:25:16 +00:00
|
|
|
|
in
|
|
|
|
|
|
|
|
|
|
let gallium_ = galliumDrivers; dri_ = driDrivers; vulkan_ = vulkanDrivers; in
|
|
|
|
|
|
|
|
|
|
let
|
|
|
|
|
galliumDrivers =
|
2017-10-10 18:34:38 +00:00
|
|
|
|
(if gallium_ == null
|
2017-02-15 13:25:16 +00:00
|
|
|
|
then defaultGalliumDrivers
|
|
|
|
|
else gallium_)
|
2018-08-25 20:53:30 +00:00
|
|
|
|
++ lib.optional stdenv.isLinux "swrast";
|
2017-02-15 13:25:16 +00:00
|
|
|
|
driDrivers =
|
|
|
|
|
(if dri_ == null
|
2018-08-25 20:53:30 +00:00
|
|
|
|
then optionals (elem "drm" eglPlatforms) defaultDriDrivers
|
|
|
|
|
else dri_) ++ lib.optional stdenv.isLinux "swrast";
|
2017-02-15 13:25:16 +00:00
|
|
|
|
vulkanDrivers =
|
|
|
|
|
if vulkan_ == null
|
|
|
|
|
then defaultVulkanDrivers
|
|
|
|
|
else vulkan_;
|
|
|
|
|
in
|
|
|
|
|
|
2013-01-28 16:38:42 +00:00
|
|
|
|
let
|
2019-02-18 22:06:39 +00:00
|
|
|
|
version = "18.3.4";
|
2016-08-24 11:35:30 +00:00
|
|
|
|
branch = head (splitString "." version);
|
2013-01-28 16:38:42 +00:00
|
|
|
|
in
|
2013-10-05 19:18:07 +00:00
|
|
|
|
|
2018-03-17 15:47:55 +00:00
|
|
|
|
let self = stdenv.mkDerivation {
|
2019-05-28 19:08:22 +00:00
|
|
|
|
name = "mesa-${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 = [
|
2017-03-07 20:48:18 +00:00
|
|
|
|
"ftp://ftp.freedesktop.org/pub/mesa/mesa-${version}.tar.xz"
|
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"
|
2017-11-13 17:49:46 +00:00
|
|
|
|
"https://mesa.freedesktop.org/archive/mesa-${version}.tar.xz"
|
2015-01-24 21:37:16 +00:00
|
|
|
|
];
|
2019-02-18 22:06:39 +00:00
|
|
|
|
sha256 = "01xv03ah4l5lcfx015n3fg1620dh4nbbv6gmhh6zhdsx6sj4sc9j";
|
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 = [
|
2016-05-22 16:05:12 +00:00
|
|
|
|
./symlink-drivers.patch
|
2018-07-18 14:41:21 +00:00
|
|
|
|
./missing-includes.patch # dev_t needs sys/stat.h, time_t needs time.h, etc.-- fixes build w/musl
|
2018-08-06 19:23:02 +00:00
|
|
|
|
./disk_cache-include-dri-driver-path-in-cache-key.patch
|
2019-02-09 19:00:48 +00:00
|
|
|
|
];
|
2013-05-16 15:16:02 +00:00
|
|
|
|
|
2018-08-25 20:53:30 +00:00
|
|
|
|
outputs = [ "out" "dev" "drivers" ]
|
|
|
|
|
++ lib.optional (elem "swrast" galliumDrivers) "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 = [
|
2018-03-17 15:44:40 +00:00
|
|
|
|
"--sysconfdir=${libglvnd.driverLink}/etc"
|
2015-03-28 20:57:03 +00:00
|
|
|
|
"--localstatedir=/var"
|
2013-05-16 15:16:02 +00:00
|
|
|
|
"--with-dri-driverdir=$(drivers)/lib/dri"
|
2018-03-17 15:44:40 +00:00
|
|
|
|
"--with-dri-searchpath=${libglvnd.driverLink}/lib/dri"
|
2018-08-25 20:53:30 +00:00
|
|
|
|
"--with-platforms=${concatStringsSep "," eglPlatforms}"
|
|
|
|
|
"--with-gallium-drivers=${concatStringsSep "," galliumDrivers}"
|
|
|
|
|
"--with-dri-drivers=${concatStringsSep "," driDrivers}"
|
|
|
|
|
"--with-vulkan-drivers=${concatStringsSep "," vulkanDrivers}"
|
2018-08-25 16:34:41 +00:00
|
|
|
|
"--enable-texture-float"
|
2016-08-24 11:35:30 +00:00
|
|
|
|
(enableFeature stdenv.isLinux "dri3")
|
|
|
|
|
(enableFeature stdenv.isLinux "nine") # Direct3D in Wine
|
2019-06-04 04:21:45 +00:00
|
|
|
|
(enableFeature stdenv.isLinux "libglvnd")
|
2016-08-24 11:35:30 +00:00
|
|
|
|
"--enable-dri"
|
|
|
|
|
"--enable-driglx-direct"
|
2015-03-28 20:57:03 +00:00
|
|
|
|
"--enable-gles1"
|
|
|
|
|
"--enable-gles2"
|
|
|
|
|
"--enable-glx"
|
2018-04-03 21:45:43 +00:00
|
|
|
|
# https://bugs.freedesktop.org/show_bug.cgi?id=35268
|
|
|
|
|
(enableFeature (!stdenv.hostPlatform.isMusl) "glx-tls")
|
2018-08-25 20:53:30 +00:00
|
|
|
|
# used by wine
|
|
|
|
|
(enableFeature (elem "swrast" galliumDrivers) "gallium-osmesa")
|
2017-05-27 09:25:23 +00:00
|
|
|
|
"--enable-llvm"
|
2018-08-25 20:53:30 +00:00
|
|
|
|
(enableFeature stdenv.isLinux "egl")
|
|
|
|
|
(enableFeature stdenv.isLinux "xa") # used in vmware driver
|
|
|
|
|
(enableFeature stdenv.isLinux "gbm")
|
2015-03-28 20:57:03 +00:00
|
|
|
|
"--enable-xvmc"
|
2013-11-16 20:23:10 +00:00
|
|
|
|
"--enable-vdpau"
|
2015-03-28 20:57:03 +00:00
|
|
|
|
"--enable-shared-glapi"
|
|
|
|
|
"--enable-llvm-shared-libs"
|
2018-08-25 20:53:30 +00:00
|
|
|
|
(enableFeature stdenv.isLinux "omx-bellagio")
|
|
|
|
|
(enableFeature stdenv.isLinux "va")
|
2016-08-24 11:35:30 +00:00
|
|
|
|
"--disable-opencl"
|
|
|
|
|
];
|
2012-01-16 17:48:33 +00:00
|
|
|
|
|
2018-12-12 01:10:30 +00:00
|
|
|
|
nativeBuildInputs = [
|
|
|
|
|
autoreconfHook intltool pkgconfig file
|
|
|
|
|
python2 python2Packages.Mako
|
|
|
|
|
];
|
2013-05-16 15:16:02 +00:00
|
|
|
|
|
2018-12-12 01:10:30 +00:00
|
|
|
|
propagatedBuildInputs = with xorg; [
|
|
|
|
|
libXdamage libXxf86vm
|
|
|
|
|
] ++ optional stdenv.isLinux libdrm
|
2018-08-25 20:53:30 +00:00
|
|
|
|
++ optionals stdenv.isDarwin [ OpenGL Xplugin ];
|
2015-03-28 20:57:03 +00:00
|
|
|
|
|
2013-05-16 15:16:02 +00:00
|
|
|
|
buildInputs = with xorg; [
|
2018-12-31 03:40:47 +00:00
|
|
|
|
expat llvmPackages.llvm libglvnd xorgproto
|
2018-09-21 18:25:12 +00:00
|
|
|
|
libX11 libXext libxcb libXt libXfixes libxshmfence libXrandr
|
2018-08-25 20:53:30 +00:00
|
|
|
|
libffi libvdpau libelf libXvMC
|
2018-12-09 15:18:34 +00:00
|
|
|
|
libpthreadstubs openssl /*or another sha1 provider*/
|
2018-11-18 15:36:24 +00:00
|
|
|
|
] ++ lib.optionals (elem "wayland" eglPlatforms) [ wayland wayland-protocols ]
|
2019-05-09 01:47:11 +00:00
|
|
|
|
++ lib.optionals stdenv.isLinux [ libomxil-bellagio libva-minimal ]
|
|
|
|
|
++ lib.optional withValgrind valgrind-light;
|
2010-04-29 14:57:02 +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 = [
|
2018-04-21 02:39:08 +00:00
|
|
|
|
"sysconfdir=\${drivers}/etc"
|
2015-04-15 04:38:47 +00:00
|
|
|
|
"localstatedir=\${TMPDIR}"
|
2018-03-17 15:44:40 +00:00
|
|
|
|
"vendorjsondir=\${out}/share/glvnd/egl_vendor.d"
|
2015-04-15 04:38:47 +00:00
|
|
|
|
];
|
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;
|
2019-01-05 05:25:48 +00:00
|
|
|
|
postInstall = ''
|
|
|
|
|
# Some installs don't have any drivers so this directory is never created.
|
|
|
|
|
mkdir -p $drivers
|
|
|
|
|
'' + optionalString (galliumDrivers != []) ''
|
2016-08-24 11:35:30 +00:00
|
|
|
|
# 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
|
|
|
|
|
2018-03-17 15:44:40 +00:00
|
|
|
|
# Move other drivers to a separate output
|
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"
|
2018-03-17 15:44:40 +00:00
|
|
|
|
mv $out/lib/lib*_mesa* $drivers/lib
|
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
|
2018-03-17 15:44:40 +00:00
|
|
|
|
substituteInPlace "$dev/lib/pkgconfig/dri.pc" --replace '$(drivers)' "${libglvnd.driverLink}"
|
|
|
|
|
|
|
|
|
|
# remove GLES libraries; they are provided by libglvnd
|
|
|
|
|
rm $out/lib/lib{GLESv1_CM,GLESv2}.*
|
|
|
|
|
|
|
|
|
|
# remove pkgconfig files for GL/GLES/EGL; they are provided by libGL.
|
|
|
|
|
rm $dev/lib/pkgconfig/{gl,egl,glesv1_cm,glesv2}.pc
|
|
|
|
|
|
|
|
|
|
# move vendor files
|
2017-01-27 11:51:16 +00:00
|
|
|
|
mv $out/share/ $drivers/
|
2018-03-17 15:44:40 +00:00
|
|
|
|
|
|
|
|
|
# Update search path used by glvnd
|
|
|
|
|
for js in $drivers/share/glvnd/egl_vendor.d/*.json; do
|
|
|
|
|
substituteInPlace "$js" --replace '"libEGL_' '"'"$drivers/lib/libEGL_"
|
|
|
|
|
done
|
2018-06-24 14:10:05 +00:00
|
|
|
|
|
|
|
|
|
# Update search path used by pkg-config
|
2018-07-16 15:47:24 +00:00
|
|
|
|
for pc in $dev/lib/pkgconfig/{d3d,dri,xatracker}.pc; do
|
2018-06-24 14:10:05 +00:00
|
|
|
|
substituteInPlace "$pc" --replace $out $drivers
|
|
|
|
|
done
|
2018-03-17 15:44:40 +00:00
|
|
|
|
'' + optionalString (vulkanDrivers != []) ''
|
2017-01-27 11:51:16 +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
|
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:
|
|
|
|
|
# check $out doesn't depend on llvm: builder failures are ignored
|
|
|
|
|
# for some reason grep -qv '${llvmPackages.llvm}' -R "$out";
|
2018-08-25 20:53:30 +00:00
|
|
|
|
postFixup = optionalString (galliumDrivers != []) ''
|
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
|
|
|
|
|
2018-03-17 15:44:40 +00:00
|
|
|
|
passthru = {
|
|
|
|
|
inherit libdrm version;
|
|
|
|
|
inherit (libglvnd) driverLink;
|
2018-03-17 15:47:55 +00:00
|
|
|
|
|
2019-06-04 04:21:45 +00:00
|
|
|
|
# Use stub libraries from libglvnd and headers from Mesa.
|
2018-03-17 15:47:55 +00:00
|
|
|
|
stubs = stdenv.mkDerivation {
|
|
|
|
|
name = "libGL-${libglvnd.version}";
|
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
|
2019-06-04 04:21:45 +00:00
|
|
|
|
# On macOS, libglvnd is not supported, so we just use what mesa
|
|
|
|
|
# build. We need to also include OpenGL.framework, and some
|
|
|
|
|
# extra tricks to go along with. We add mesa’s libGLX to support
|
|
|
|
|
# the X extensions to OpenGL.
|
|
|
|
|
buildCommand = if stdenv.hostPlatform.isDarwin then ''
|
|
|
|
|
mkdir -p $out/nix-support $dev
|
|
|
|
|
echo ${OpenGL} >> $out/nix-support/propagated-build-inputs
|
|
|
|
|
ln -s ${self.out}/lib $out/lib
|
|
|
|
|
|
|
|
|
|
mkdir -p $dev/lib/pkgconfig $dev/nix-support
|
|
|
|
|
echo "$out" > $dev/nix-support/propagated-build-inputs
|
|
|
|
|
ln -s ${self.dev}/include $dev/include
|
|
|
|
|
|
|
|
|
|
cat <<EOF >$dev/lib/pkgconfig/gl.pc
|
|
|
|
|
Name: gl
|
|
|
|
|
Description: gl library
|
|
|
|
|
Version: ${self.version}
|
|
|
|
|
Libs: -L${self.out}/lib -lGL
|
|
|
|
|
Cflags: -I${self.dev}/include
|
|
|
|
|
EOF
|
|
|
|
|
|
|
|
|
|
cat <<EOF >$dev/lib/pkgconfig/glesv1_cm.pc
|
|
|
|
|
Name: glesv1_cm
|
|
|
|
|
Description: glesv1_cm library
|
|
|
|
|
Version: ${self.version}
|
|
|
|
|
Libs: -L${self.out}/lib -lGLESv1_CM
|
|
|
|
|
Cflags: -I${self.dev}/include
|
|
|
|
|
EOF
|
|
|
|
|
|
|
|
|
|
cat <<EOF >$dev/lib/pkgconfig/glesv2.pc
|
|
|
|
|
Name: glesv2
|
|
|
|
|
Description: glesv2 library
|
|
|
|
|
Version: ${self.version}
|
|
|
|
|
Libs: -L${self.out}/lib -lGLESv2
|
|
|
|
|
Cflags: -I${self.dev}/include
|
|
|
|
|
EOF
|
|
|
|
|
''
|
|
|
|
|
|
|
|
|
|
# Otherwise, setup gl stubs to use libglvnd.
|
|
|
|
|
else ''
|
2018-08-25 20:53:30 +00:00
|
|
|
|
mkdir -p $out/nix-support
|
|
|
|
|
ln -s ${libglvnd.out}/lib $out/lib
|
|
|
|
|
|
2018-03-17 15:47:55 +00:00
|
|
|
|
mkdir -p $dev/{,lib/pkgconfig,nix-support}
|
|
|
|
|
echo "$out" > $dev/nix-support/propagated-build-inputs
|
|
|
|
|
ln -s ${self.dev}/include $dev/include
|
|
|
|
|
|
|
|
|
|
genPkgConfig() {
|
|
|
|
|
local name="$1"
|
|
|
|
|
local lib="$2"
|
|
|
|
|
|
|
|
|
|
cat <<EOF >$dev/lib/pkgconfig/$name.pc
|
|
|
|
|
Name: $name
|
|
|
|
|
Description: $lib library
|
|
|
|
|
Version: ${self.version}
|
|
|
|
|
Libs: -L${libglvnd.out}/lib -l$lib
|
|
|
|
|
Cflags: -I${self.dev}/include
|
|
|
|
|
EOF
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
genPkgConfig gl GL
|
|
|
|
|
genPkgConfig egl EGL
|
|
|
|
|
genPkgConfig glesv1_cm GLESv1_CM
|
|
|
|
|
genPkgConfig glesv2 GLESv2
|
|
|
|
|
'';
|
|
|
|
|
};
|
2018-03-17 15:44:40 +00:00
|
|
|
|
};
|
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";
|
2018-01-05 19:42:46 +00:00
|
|
|
|
homepage = https://www.mesa3d.org/;
|
2015-04-14 20:41:22 +00:00
|
|
|
|
license = licenses.mit; # X11 variant, in most files
|
2019-05-09 01:46:31 +00:00
|
|
|
|
platforms = platforms.mesaPlatforms;
|
2018-07-11 21:22:57 +00:00
|
|
|
|
maintainers = with maintainers; [ vcunat ];
|
2007-11-05 23:59:55 +00:00
|
|
|
|
};
|
2018-03-17 15:47:55 +00:00
|
|
|
|
};
|
|
|
|
|
in self
|