2019-05-22 17:30:05 +01:00
|
|
|
{ stdenv, lib, fetchFromGitHub, fetchpatch, autoreconfHook, python2, pkgconfig, libX11, libXext, xorgproto, addOpenGLRunpath }:
|
2017-01-29 21:28:37 +00:00
|
|
|
|
2019-05-22 17:30:05 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libglvnd";
|
2018-03-17 15:42:59 +00:00
|
|
|
version = "1.0.0";
|
2017-01-29 21:28:37 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "NVIDIA";
|
|
|
|
repo = "libglvnd";
|
2018-03-17 15:42:59 +00:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1a126lzhd2f04zr3rvdl6814lfl0j077spi5dsf2alghgykn5iif";
|
2017-01-29 21:28:37 +00:00
|
|
|
};
|
|
|
|
|
2019-05-22 17:30:05 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig python2 addOpenGLRunpath ];
|
2018-12-31 03:40:47 +00:00
|
|
|
buildInputs = [ libX11 libXext xorgproto ];
|
2017-01-29 21:28:37 +00:00
|
|
|
|
2018-08-15 23:37:00 +01:00
|
|
|
postPatch = lib.optionalString stdenv.isDarwin ''
|
|
|
|
substituteInPlace src/GLX/Makefile.am \
|
|
|
|
--replace "-Wl,-Bsymbolic " ""
|
|
|
|
substituteInPlace src/EGL/Makefile.am \
|
|
|
|
--replace "-Wl,-Bsymbolic " ""
|
|
|
|
'';
|
|
|
|
|
2017-01-29 21:28:37 +00:00
|
|
|
NIX_CFLAGS_COMPILE = [
|
|
|
|
"-UDEFAULT_EGL_VENDOR_CONFIG_DIRS"
|
2018-03-17 15:42:59 +00:00
|
|
|
# FHS paths are added so that non-NixOS applications can find vendor files.
|
2019-05-22 17:30:05 +01:00
|
|
|
"-DDEFAULT_EGL_VENDOR_CONFIG_DIRS=\"${addOpenGLRunpath.driverLink}/share/glvnd/egl_vendor.d:/etc/glvnd/egl_vendor.d:/usr/share/glvnd/egl_vendor.d\""
|
2018-08-15 23:37:00 +01:00
|
|
|
] ++ lib.optional stdenv.cc.isClang "-Wno-error";
|
2017-01-29 21:28:37 +00:00
|
|
|
|
2018-04-03 22:45:43 +01:00
|
|
|
# Indirectly: https://bugs.freedesktop.org/show_bug.cgi?id=35268
|
|
|
|
configureFlags = stdenv.lib.optional stdenv.hostPlatform.isMusl "--disable-tls";
|
|
|
|
|
2018-03-28 19:35:42 +01:00
|
|
|
# Upstream patch fixing use of libdl, should be in next release.
|
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/NVIDIA/libglvnd/commit/0177ade40262e31a80608a8e8e52d3da7163dccf.patch";
|
|
|
|
sha256 = "1rnz5jw2gvx4i1lcp0k85jz9xgr3dgzsd583m2dlxkaf2a09j89d";
|
|
|
|
})
|
2019-02-24 09:12:39 +00:00
|
|
|
] ++ stdenv.lib.optional stdenv.isDarwin
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/NVIDIA/libglvnd/commit/294ccb2f49107432567e116e13efac586580a4cc.patch";
|
|
|
|
sha256 = "01339wg27cypv93221rhk3885vxbsg8kvbfyia77jmjdcnwrdwm2";
|
|
|
|
});
|
2017-01-29 21:28:37 +00:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2019-05-22 17:30:05 +01:00
|
|
|
# Set RUNPATH so that driver libraries in /run/opengl-driver(-32)/lib can be found.
|
|
|
|
# See the explanation in addOpenGLRunpath.
|
|
|
|
postFixup = ''
|
|
|
|
addOpenGLRunpath $out/lib/libGLX.so $out/lib/libEGL.so
|
|
|
|
'';
|
|
|
|
|
|
|
|
passthru = { inherit (addOpenGLRunpath) driverLink; };
|
2018-03-17 15:42:59 +00:00
|
|
|
|
2017-01-29 21:28:37 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "The GL Vendor-Neutral Dispatch library";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = https://github.com/NVIDIA/libglvnd;
|
2017-01-29 21:28:37 +00:00
|
|
|
license = licenses.bsd2;
|
2018-08-15 23:37:00 +01:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2017-01-29 21:28:37 +00:00
|
|
|
};
|
|
|
|
}
|