* Use a pure libdrm.

svn path=/nixpkgs/trunk/; revision=8704
This commit is contained in:
Eelco Dolstra
2007-05-15 20:00:30 +00:00
parent 2f670d1e06
commit d4f3016e10
3 changed files with 5 additions and 5 deletions
@@ -6,10 +6,10 @@
# Of course, use of the driver in /usr/lib is highly impure. But it
# might actually work ;-)
{stdenv, xlibs, expat}:
{stdenv, xlibs, expat, libdrm}:
stdenv.mkDerivation {
name = "xorg-sys-opengl";
name = "xorg-sys-opengl-2";
builder = ./builder.sh;
neededLibs = [xlibs.libXxf86vm xlibs.libXext expat];
neededLibs = [xlibs.libXxf86vm xlibs.libXext expat libdrm];
}