Merge pull request #135931 from joachimschmidt557/intel-gpu-tools-1.26
This commit is contained in:
commit
f12351d5c5
1 changed files with 67 additions and 19 deletions
|
@ -1,37 +1,85 @@
|
||||||
{ lib, stdenv, fetchurl, pkg-config, libdrm, libpciaccess, cairo, xorgproto, udev
|
{ lib
|
||||||
, libX11, libXext, libXv, libXrandr, glib, bison, libunwind, python3, kmod
|
, stdenv
|
||||||
, procps, utilmacros, gtk-doc, openssl, peg, elfutils
|
, fetchurl
|
||||||
|
, pkg-config
|
||||||
|
, libdrm
|
||||||
|
, libpciaccess
|
||||||
|
, cairo
|
||||||
|
, xorgproto
|
||||||
|
, udev
|
||||||
|
, libX11
|
||||||
|
, libXext
|
||||||
|
, libXv
|
||||||
|
, libXrandr
|
||||||
|
, glib
|
||||||
|
, bison
|
||||||
|
, libunwind
|
||||||
|
, python3
|
||||||
|
, kmod
|
||||||
|
, procps
|
||||||
|
, utilmacros
|
||||||
|
, gtk-doc
|
||||||
|
, docbook_xsl
|
||||||
|
, openssl
|
||||||
|
, peg
|
||||||
|
, elfutils
|
||||||
|
, meson
|
||||||
|
, ninja
|
||||||
|
, valgrind
|
||||||
|
, xmlrpc_c
|
||||||
|
, gsl
|
||||||
|
, alsa-lib
|
||||||
|
, curl
|
||||||
|
, json_c
|
||||||
|
, liboping
|
||||||
|
, flex
|
||||||
|
, docutils
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "intel-gpu-tools";
|
pname = "intel-gpu-tools";
|
||||||
version = "1.25";
|
version = "1.26";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://xorg.freedesktop.org/archive/individual/app/igt-gpu-tools-${version}.tar.xz";
|
url = "https://xorg.freedesktop.org/archive/individual/app/igt-gpu-tools-${version}.tar.xz";
|
||||||
sha256 = "04fx7xclhick3k7fyk9c4mn8mxzf1253j1r0hrvj9sl40j7lsia0";
|
sha256 = "1dwvxh1yplsh1a7h3gpp40g91v12cfxy6yy99s1v9yr2kwxikm1n";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config utilmacros ];
|
nativeBuildInputs = [ pkg-config utilmacros meson ninja flex bison gtk-doc docutils docbook_xsl ];
|
||||||
buildInputs = [ libdrm libpciaccess cairo xorgproto udev libX11 kmod
|
buildInputs = [
|
||||||
libXext libXv libXrandr glib bison libunwind python3 procps
|
libdrm
|
||||||
gtk-doc openssl peg elfutils ];
|
libpciaccess
|
||||||
|
cairo
|
||||||
|
xorgproto
|
||||||
|
udev
|
||||||
|
libX11
|
||||||
|
kmod
|
||||||
|
libXext
|
||||||
|
libXv
|
||||||
|
libXrandr
|
||||||
|
glib
|
||||||
|
libunwind
|
||||||
|
python3
|
||||||
|
procps
|
||||||
|
openssl
|
||||||
|
peg
|
||||||
|
elfutils
|
||||||
|
valgrind
|
||||||
|
xmlrpc_c
|
||||||
|
gsl
|
||||||
|
alsa-lib
|
||||||
|
curl
|
||||||
|
json_c
|
||||||
|
liboping
|
||||||
|
];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [ "-Wno-error=array-bounds" ];
|
NIX_CFLAGS_COMPILE = [ "-Wno-error=array-bounds" ];
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
./autogen.sh
|
patchShebangs tests man
|
||||||
'';
|
'';
|
||||||
|
|
||||||
preBuild = ''
|
hardeningDisable = [ "bindnow" ];
|
||||||
patchShebangs tests
|
|
||||||
|
|
||||||
patchShebangs debugger/system_routine/pre_cpp.py
|
|
||||||
substituteInPlace tools/Makefile.am --replace '$(CAIRO_CFLAGS)' '$(CAIRO_CFLAGS) $(GLIB_CFLAGS)'
|
|
||||||
substituteInPlace tests/Makefile.am --replace '$(CAIRO_CFLAGS)' '$(CAIRO_CFLAGS) $(GLIB_CFLAGS)'
|
|
||||||
'';
|
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://01.org/linuxgraphics/";
|
homepage = "https://01.org/linuxgraphics/";
|
||||||
|
|
Loading…
Reference in a new issue