2021-01-19 06:50:56 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, pkg-config, gettext, makeWrapper
|
2016-07-04 20:31:40 +00:00
|
|
|
, ncurses, libdrm, libpciaccess, libxcb }:
|
2015-01-01 15:47:24 +00:00
|
|
|
|
2016-01-24 19:31:44 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "radeontop";
|
2021-11-24 16:17:23 +00:00
|
|
|
version = "1.4";
|
2015-01-01 15:47:24 +00:00
|
|
|
|
2015-02-05 23:05:48 +00:00
|
|
|
src = fetchFromGitHub {
|
2021-11-24 16:17:23 +00:00
|
|
|
sha256 = "0kwqddidr45s1blp0h8r8h1dd1p50l516yb6mb4s6zsc827xzgg3";
|
2020-12-29 07:43:15 +00:00
|
|
|
rev = "v${version}";
|
2015-02-05 23:05:48 +00:00
|
|
|
repo = "radeontop";
|
|
|
|
owner = "clbr";
|
2015-01-01 15:47:24 +00:00
|
|
|
};
|
|
|
|
|
2016-07-04 20:31:40 +00:00
|
|
|
buildInputs = [ ncurses libdrm libpciaccess libxcb ];
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config gettext makeWrapper ];
|
2015-01-01 15:47:24 +00:00
|
|
|
|
2015-01-12 15:30:27 +00:00
|
|
|
enableParallelBuilding = true;
|
2015-01-01 15:47:24 +00:00
|
|
|
|
2015-01-12 15:30:27 +00:00
|
|
|
patchPhase = ''
|
2015-06-24 14:41:02 +00:00
|
|
|
substituteInPlace getver.sh --replace ver=unknown ver=${version}
|
2021-12-02 07:03:53 +00:00
|
|
|
substituteInPlace Makefile --replace pkg-config "$PKG_CONFIG"
|
2015-01-01 15:47:24 +00:00
|
|
|
'';
|
|
|
|
|
2015-11-26 17:44:44 +00:00
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
2015-01-01 15:47:24 +00:00
|
|
|
|
2016-07-04 20:31:40 +00:00
|
|
|
postInstall = ''
|
2021-11-24 16:17:23 +00:00
|
|
|
wrapProgram $out/bin/radeontop \
|
2016-07-04 20:31:40 +00:00
|
|
|
--prefix LD_LIBRARY_PATH : $out/lib
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-01-01 15:47:24 +00:00
|
|
|
description = "Top-like tool for viewing AMD Radeon GPU utilization";
|
2015-01-12 15:30:27 +00: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-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/clbr/radeontop";
|
2015-01-01 15:47:24 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
};
|
|
|
|
}
|