1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/tools/misc/intel-gpu-tools/default.nix
2016-10-13 03:18:52 +02:00

27 lines
876 B
Nix

{ stdenv, fetchurl, pkgconfig, libdrm, libpciaccess, cairo, dri2proto, udev
, libX11, libXext, libXv, libXrandr, glib, bison, libunwind, python3 }:
stdenv.mkDerivation rec {
name = "intel-gpu-tools-1.16";
src = fetchurl {
url = "http://xorg.freedesktop.org/archive/individual/app/${name}.tar.bz2";
sha256 = "1q9sfb15081zm1rq4z67sfj13ryvbdha4fa6pdzdsfd9261nvgn6";
};
buildInputs = [ pkgconfig libdrm libpciaccess cairo dri2proto udev libX11
libXext libXv libXrandr glib bison libunwind python3 ];
preBuild = ''
patchShebangs debugger/system_routine/pre_cpp.py
'';
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 ];
};
}