intel-gpu-tools: update from 1.8 to 1.9

adopt it and enabled tests (they worked with chroots builds)
This commit is contained in:
Pascal Wittmann 2014-12-14 23:34:38 +01:00
parent 23b387236d
commit 8d3aaa2bb7

View File

@ -1,15 +1,13 @@
{ stdenv, fetchurl, pkgconfig, libdrm, libpciaccess, cairo, dri2proto, udev, libX11, libXext, libXv, libXrandr, glib, bison }:
stdenv.mkDerivation rec {
name = "intel-gpu-tools-1.8";
name = "intel-gpu-tools-1.9";
src = fetchurl {
url = "http://xorg.freedesktop.org/archive/individual/app/${name}.tar.bz2";
sha256 = "0n9pzwjzx4xiffcy3nkc7q7689sid2ry8m9xx4vgxxspr8ds3qpz";
sha256 = "1lqy1adplb2bqpddznsavjc2fxn6rvzxnndmi8cnq7pyw25c5r0x";
};
configureFlags = [ "--disable-tests" ];
buildInputs = [ pkgconfig libdrm libpciaccess cairo dri2proto udev libX11 libXext libXv libXrandr glib bison ];
meta = with stdenv.lib; {
@ -17,5 +15,6 @@ stdenv.mkDerivation rec {
description = "Tools for development and testing of the Intel DRM driver";
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ pSub ];
};
}