nixpkgs/pkgs/development/tools/misc/intel-gpu-tools/default.nix

23 lines
783 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, libdrm, libpciaccess, cairo, dri2proto, udev
, libX11, libXext, libXv, libXrandr, glib, bison, libunwind }:
2014-08-04 08:21:59 +02:00
stdenv.mkDerivation rec {
name = "intel-gpu-tools-1.11";
2014-08-04 08:21:59 +02:00
src = fetchurl {
url = "http://xorg.freedesktop.org/archive/individual/app/${name}.tar.bz2";
sha256 = "1r5dbp2gdxqryv1fhxy83k4d1kfp7rv8q370fhncamrb8m8390j8";
2014-08-04 08:21:59 +02:00
};
buildInputs = [ pkgconfig libdrm libpciaccess cairo dri2proto udev libX11
libXext libXv libXrandr glib bison libunwind ];
2014-08-04 08:21:59 +02:00
meta = with stdenv.lib; {
homepage = https://01.org/linuxgraphics/;
description = "Tools for development and testing of the Intel DRM driver";
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ pSub ];
2014-08-04 08:21:59 +02:00
};
}