xorg: add "intel-testing" video driver, currently 2.99.911

This commit is contained in:
Vladimír Čunát 2014-03-23 21:28:14 +01:00
parent 97f1a251ed
commit 11492176d5
3 changed files with 17 additions and 0 deletions

View file

@ -21,6 +21,7 @@ let
unichrome = { modules = [ pkgs.xorgVideoUnichrome ]; };
virtualbox = { modules = [ kernelPackages.virtualboxGuestAdditions ]; driverName = "vboxvideo"; };
ati = { modules = [ pkgs.xorg.xf86videoati pkgs.xorg.glamoregl ]; };
intel-testing = { modules = with pkgs.xorg; [ xf86videointel-testing glamoregl ]; driverName = "intel"; };
};
driverNames = config.hardware.opengl.videoDrivers;

View file

@ -0,0 +1,14 @@
{ stdenv, fetchurl, pkgconfig, libdrm, udev, xorg }:
with xorg;
(stdenv.mkDerivation ({
name = "xf86-video-intel-2.99.911";
builder = ./builder.sh;
src = fetchurl {
url = mirror://xorg/individual/driver/xf86-video-intel-2.99.911.tar.bz2;
sha256 = "1mkhfa10304xvs763dz1kj93zkmdidlfxhsy5j8ljkfc3d4nhyjf";
};
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 ;}

View file

@ -6515,6 +6515,8 @@ let
dbus libuuid openssl gperf m4
autoconf automake libtool xmlto asciidoc udev flex bison python mtdev pixman;
mesa = mesa_noglu;
} // {
xf86videointel-testing = callPackage ../servers/x11/xorg/xf86-video-intel-testing.nix { };
});
xorgReplacements = callPackage ../servers/x11/xorg/replacements.nix { };