2021-01-18 22:50:56 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub, pkg-config, gettext, makeWrapper
|
2016-07-04 13:31:40 -07:00
|
|
|
, ncurses, libdrm, libpciaccess, libxcb }:
|
2015-01-01 07:47:24 -08:00
|
|
|
|
2016-01-24 11:31:44 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "radeontop";
|
2020-12-28 23:43:15 -08:00
|
|
|
version = "1.3";
|
2015-01-01 07:47:24 -08:00
|
|
|
|
2015-02-05 15:05:48 -08:00
|
|
|
src = fetchFromGitHub {
|
2020-12-28 23:43:15 -08:00
|
|
|
sha256 = "sha256-tnIxM0+RfOIt714fEUWRP/4rEPHaOuCZFit9/RPdxis=";
|
|
|
|
rev = "v${version}";
|
2015-02-05 15:05:48 -08:00
|
|
|
repo = "radeontop";
|
|
|
|
owner = "clbr";
|
2015-01-01 07:47:24 -08:00
|
|
|
};
|
|
|
|
|
2016-07-04 13:31:40 -07:00
|
|
|
buildInputs = [ ncurses libdrm libpciaccess libxcb ];
|
2021-01-18 22:50:56 -08:00
|
|
|
nativeBuildInputs = [ pkg-config gettext makeWrapper ];
|
2015-01-01 07:47:24 -08:00
|
|
|
|
2015-01-12 07:30:27 -08:00
|
|
|
enableParallelBuilding = true;
|
2015-01-01 07:47:24 -08:00
|
|
|
|
2015-01-12 07:30:27 -08:00
|
|
|
patchPhase = ''
|
2015-06-24 07:41:02 -07:00
|
|
|
substituteInPlace getver.sh --replace ver=unknown ver=${version}
|
2015-01-01 07:47:24 -08:00
|
|
|
'';
|
|
|
|
|
2015-11-26 09:44:44 -08:00
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
2015-01-01 07:47:24 -08:00
|
|
|
|
2016-07-04 13:31:40 -07:00
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/sbin/radeontop \
|
|
|
|
--prefix LD_LIBRARY_PATH : $out/lib
|
|
|
|
'';
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2015-01-01 07:47:24 -08:00
|
|
|
description = "Top-like tool for viewing AMD Radeon GPU utilization";
|
2015-01-12 07:30:27 -08:00
|
|
|
longDescription = ''
|
|
|
|
View GPU utilization, both for the total activity percent and individual
|
|
|
|
blocks. Supports R600 and later cards: even Southern Islands should work.
|
|
|
|
Works with both the open drivers and AMD Catalyst. Total GPU utilization
|
|
|
|
is also valid for OpenCL loads; the other blocks are only useful for GL
|
|
|
|
loads. Requires root rights or other permissions to read /dev/mem.
|
|
|
|
'';
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/clbr/radeontop";
|
2015-01-01 07:47:24 -08:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl3;
|
2018-01-16 13:59:13 -08:00
|
|
|
maintainers = with maintainers; [ rycee ];
|
2015-01-01 07:47:24 -08:00
|
|
|
};
|
|
|
|
}
|