2014-03-23 21:28:14 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libdrm, udev, xorg }:
|
|
|
|
|
|
|
|
with xorg;
|
|
|
|
|
|
|
|
(stdenv.mkDerivation ({
|
2014-06-15 21:18:21 +02:00
|
|
|
name = "xf86-video-intel-2.99.912";
|
2014-03-23 21:28:14 +01:00
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2014-06-15 21:18:21 +02:00
|
|
|
url = mirror://xorg/individual/driver/xf86-video-intel-2.99.912.tar.bz2;
|
|
|
|
sha256 = "00cmvs5jxaqnl1pwqvj1rwir4kbvf5qfng89cjn4rwsr5m4zr3vw";
|
2014-03-23 21:28:14 +01:00
|
|
|
};
|
|
|
|
buildInputs = [pkgconfig dri2proto fontsproto glamoregl libdrm udev libpciaccess randrproto renderproto libX11 xcbutil libxcb libXcursor libXdamage libXext xextproto xf86driproto libXfixes libXinerama xorgserver xproto libXrandr libXrender libXtst libXvMC ];
|
|
|
|
})) // {inherit dri2proto fontsproto glamoregl libdrm udev libpciaccess randrproto renderproto libX11 xcbutil libxcb libXcursor libXdamage libXext xextproto xf86driproto libXfixes libXinerama xorgserver xproto libXrandr libXrender libXtst libXvMC ;}
|
|
|
|
|