3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/misc/intel-gpu-tools/default.nix

44 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, pkg-config, libdrm, libpciaccess, cairo, xorgproto, udev
2016-12-11 16:55:09 +00:00
, libX11, libXext, libXv, libXrandr, glib, bison, libunwind, python3, kmod
, procps, utilmacros, gtk-doc, openssl, peg, elfutils
}:
2014-08-04 07:21:59 +01:00
stdenv.mkDerivation rec {
pname = "intel-gpu-tools";
2020-03-22 15:36:46 +00:00
version = "1.25";
2014-08-04 07:21:59 +01:00
src = fetchurl {
2018-08-14 21:14:55 +01:00
url = "https://xorg.freedesktop.org/archive/individual/app/igt-gpu-tools-${version}.tar.xz";
2020-03-22 15:36:46 +00:00
sha256 = "04fx7xclhick3k7fyk9c4mn8mxzf1253j1r0hrvj9sl40j7lsia0";
2014-08-04 07:21:59 +01:00
};
nativeBuildInputs = [ pkg-config utilmacros ];
buildInputs = [ libdrm libpciaccess cairo xorgproto udev libX11 kmod
2018-02-26 15:03:48 +00:00
libXext libXv libXrandr glib bison libunwind python3 procps
gtk-doc openssl peg elfutils ];
2018-02-26 15:03:48 +00:00
2019-11-03 12:27:43 +00:00
NIX_CFLAGS_COMPILE = [ "-Wno-error=array-bounds" ];
2018-02-26 15:03:48 +00:00
preConfigure = ''
./autogen.sh
'';
2016-03-17 20:45:26 +00:00
preBuild = ''
2018-08-08 22:12:32 +01:00
patchShebangs tests
2016-03-17 20:45:26 +00:00
patchShebangs debugger/system_routine/pre_cpp.py
substituteInPlace tools/Makefile.am --replace '$(CAIRO_CFLAGS)' '$(CAIRO_CFLAGS) $(GLIB_CFLAGS)'
2018-02-26 15:03:48 +00:00
substituteInPlace tests/Makefile.am --replace '$(CAIRO_CFLAGS)' '$(CAIRO_CFLAGS) $(GLIB_CFLAGS)'
2016-03-17 20:45:26 +00:00
'';
enableParallelBuilding = true;
2014-08-04 07:21:59 +01:00
meta = with stdenv.lib; {
2020-03-22 15:36:46 +00:00
homepage = "https://01.org/linuxgraphics/";
2014-08-04 07:21:59 +01:00
description = "Tools for development and testing of the Intel DRM driver";
license = licenses.mit;
platforms = [ "x86_64-linux" "i686-linux" ];
maintainers = with maintainers; [ pSub ];
2014-08-04 07:21:59 +01:00
};
}