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 07:21:59 +01:00
stdenv.mkDerivation rec {
2015-12-12 10:58:22 +00:00
name = "intel-gpu-tools-1.13";
2014-08-04 07:21:59 +01:00
src = fetchurl {
url = "http://xorg.freedesktop.org/archive/individual/app/${name}.tar.bz2";
2015-12-12 10:58:22 +00:00
sha256 = "0d5ff9l12zw9mdsjwbwn6y9k1gz6xlzsx5k87apz9vq6q625irn6";
2014-08-04 07:21:59 +01:00
};
buildInputs = [ pkgconfig libdrm libpciaccess cairo dri2proto udev libX11
libXext libXv libXrandr glib bison libunwind ];
2014-08-04 07:21:59 +01: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 07:21:59 +01:00
};
}