forked from mirrors/nixpkgs
xorg: add "intel-testing" video driver, currently 2.99.911
This commit is contained in:
parent
97f1a251ed
commit
11492176d5
|
@ -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;
|
||||
|
|
14
pkgs/servers/x11/xorg/xf86-video-intel-testing.nix
Normal file
14
pkgs/servers/x11/xorg/xf86-video-intel-testing.nix
Normal 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 ;}
|
||||
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue