summary refs log tree commit diff
path: root/pkgs/os-specific/linux/opengl/xorg-sys/default.nix
blob: 2cebb8d9dcc263c5555be46ccd2a289265b9a038 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# This is a very dirty hack to allow hardware acceleration of OpenGL
# applications for most (?) users.  It will use the driver that your
# Linux distribution installed in /usr/lib/libGL.so.1.  Hopefully,
# this driver uses hardware acceleration.
#
# Of course, use of the driver in /usr/lib is highly impure.  But it
# might actually work ;-)

{stdenv, xlibs, expat, libdrm}:

stdenv.mkDerivation {
  name = "xorg-sys-opengl-3";
  builder = ./builder.sh;
  neededLibs = [xlibs.libXxf86vm xlibs.libXext expat libdrm stdenv.cc.cc];
}