xf86-video-intel: fixup after #29039

This was one package in pkgs/servers/x11/xorg/default.nix
that was *not* generated, and that was missed in the PR
and overwritten (understandably).
Now the change is properly in overrides.nix to prevent that...
This commit is contained in:
Vladimír Čunát 2017-10-08 10:55:34 +02:00
parent eedc4e5203
commit 35f894860d
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA
1 changed files with 7 additions and 0 deletions

View File

@ -562,6 +562,13 @@ in
};
xf86videointel = attrs: attrs // {
# the update script only works with released tarballs :-/
name = "xf86-video-intel-2017-04-18";
src = args.fetchurl {
url = "http://cgit.freedesktop.org/xorg/driver/xf86-video-intel/snapshot/"
+ "c72bb27a3a68ecc616ce2dc8e9a1d20354504562.tar.gz";
sha256 = "1awxbig135nmq7qa8jzggqr4q32k6ngnal2lckrdkg7zqi40zdv8";
};
buildInputs = attrs.buildInputs ++ [xorg.libXfixes xorg.libXScrnSaver xorg.pixman];
nativeBuildInputs = attrs.nativeBuildInputs ++ [args.autoreconfHook xorg.utilmacros];
configureFlags = "--with-default-dri=3 --enable-tools";