2016-07-04 13:31:40 -07:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, gettext, makeWrapper
|
|
|
|
, ncurses, libdrm, libpciaccess, libxcb }:
|
2015-01-01 07:47:24 -08:00
|
|
|
|
2016-01-24 11:31:44 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2015-01-01 07:47:24 -08:00
|
|
|
name = "radeontop-${version}";
|
2016-07-04 13:31:40 -07:00
|
|
|
version = "2016-07-04";
|
2015-01-01 07:47:24 -08:00
|
|
|
|
2015-02-05 15:05:48 -08:00
|
|
|
src = fetchFromGitHub {
|
2016-07-04 13:31:40 -07:00
|
|
|
sha256 = "07pj5c3shnxljwq0hkksw7qnp8kb3n5ngihdmi4fqbmyz8in2vm5";
|
|
|
|
rev = "bb3ed18aa8877f2816348ca9f016bb61d67e636f";
|
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 ];
|
|
|
|
nativeBuildInputs = [ pkgconfig 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
|
|
|
|
'';
|
|
|
|
|
2015-01-01 07:47:24 -08:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
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.
|
|
|
|
'';
|
2015-01-01 07:47:24 -08:00
|
|
|
homepage = https://github.com/clbr/radeontop;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl3;
|
2015-01-12 07:30:27 -08:00
|
|
|
maintainers = with maintainers; [ rycee nckx ];
|
2015-01-01 07:47:24 -08:00
|
|
|
};
|
|
|
|
}
|