Skip to content

Commit

Permalink
xf86-video-intel: fixup after #29039
Browse files Browse the repository at this point in the history
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...
  • Loading branch information
vcunat committed Oct 8, 2017
1 parent eedc4e5 commit 35f8948
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions pkgs/servers/x11/xorg/overrides.nix
Expand Up @@ -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";
Expand Down

0 comments on commit 35f8948

Please sign in to comment.