mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
6aab92f42a
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
119 lines
1.9 KiB
Nix
119 lines
1.9 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitLab
|
|
, fetchpatch
|
|
|
|
# build time
|
|
, bison
|
|
, docbook_xsl
|
|
, docutils
|
|
, flex
|
|
, gtk-doc
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, utilmacros
|
|
|
|
# runtime
|
|
, alsa-lib
|
|
, cairo
|
|
, curl
|
|
, elfutils
|
|
, glib
|
|
, gsl
|
|
, json_c
|
|
, kmod
|
|
, libdrm
|
|
, liboping
|
|
, libpciaccess
|
|
, libunwind
|
|
, libX11
|
|
, libXext
|
|
, libXrandr
|
|
, libXv
|
|
, openssl
|
|
, peg
|
|
, procps
|
|
, python3
|
|
, udev
|
|
, valgrind
|
|
, xmlrpc_c
|
|
, xorgproto
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "intel-gpu-tools";
|
|
version = "1.27.1";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.freedesktop.org";
|
|
owner = "drm";
|
|
repo = "igt-gpu-tools";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-7Z9Y7uUjtjdQbB+xV/fvO18xB18VV7fBZqw1fI7U0jQ=";
|
|
};
|
|
|
|
patches = [
|
|
# fixes pkgsMusl.intel-gpu-tools
|
|
# https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/issues/138
|
|
(fetchpatch {
|
|
url = "https://raw.githubusercontent.com/void-linux/void-packages/111918317d06598fe1459dbe139923404f3f4b9d/srcpkgs/igt-gpu-tools/patches/musl.patch";
|
|
hash = "sha256-cvtwZg7js7O/Ww7puBTfVzLRji2bHTyV91+PvpH8qrg=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
bison
|
|
docbook_xsl
|
|
docutils
|
|
flex
|
|
gtk-doc
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
utilmacros
|
|
];
|
|
|
|
buildInputs = [
|
|
alsa-lib
|
|
cairo
|
|
curl
|
|
elfutils
|
|
glib
|
|
gsl
|
|
json_c
|
|
kmod
|
|
libdrm
|
|
liboping
|
|
libpciaccess
|
|
libunwind
|
|
libX11
|
|
libXext
|
|
libXrandr
|
|
libXv
|
|
openssl
|
|
peg
|
|
procps
|
|
python3
|
|
udev
|
|
valgrind
|
|
xmlrpc_c
|
|
xorgproto
|
|
];
|
|
|
|
preConfigure = ''
|
|
patchShebangs tests man
|
|
'';
|
|
|
|
hardeningDisable = [ "bindnow" ];
|
|
|
|
meta = with lib; {
|
|
changelog = "https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/blob/v${version}/NEWS";
|
|
homepage = "https://drm.pages.freedesktop.org/igt-gpu-tools/";
|
|
description = "Tools for development and testing of the Intel DRM driver";
|
|
license = licenses.mit;
|
|
platforms = [ "x86_64-linux" "i686-linux" ];
|
|
maintainers = with maintainers; [ pSub ];
|
|
};
|
|
}
|