2015-02-06 00:05:48 +01:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, gettext, ncurses, libdrm, libpciaccess }:
|
2015-01-01 16:47:24 +01:00
|
|
|
|
2016-01-24 20:31:44 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2015-01-01 16:47:24 +01:00
|
|
|
name = "radeontop-${version}";
|
2016-01-24 20:31:44 +01:00
|
|
|
version = "2015-11-24";
|
2015-01-01 16:47:24 +01:00
|
|
|
|
2015-02-06 00:05:48 +01:00
|
|
|
src = fetchFromGitHub {
|
2015-11-24 19:28:49 +01:00
|
|
|
sha256 = "0irwq6rps5mnban8cxbrm59wpyv4j80q3xdjm9fxvfpiyys2g2hz";
|
|
|
|
rev = "0e82272f3e8f2287c1bc1d8a0c7bdbd5c4818b37";
|
2015-02-06 00:05:48 +01:00
|
|
|
repo = "radeontop";
|
|
|
|
owner = "clbr";
|
2015-01-01 16:47:24 +01:00
|
|
|
};
|
|
|
|
|
2015-06-17 19:36:06 +02:00
|
|
|
buildInputs = [ ncurses libdrm libpciaccess ];
|
|
|
|
nativeBuildInputs = [ pkgconfig gettext ];
|
2015-01-01 16:47:24 +01:00
|
|
|
|
2015-01-12 16:30:27 +01:00
|
|
|
enableParallelBuilding = true;
|
2015-01-01 16:47:24 +01:00
|
|
|
|
2015-01-12 16:30:27 +01:00
|
|
|
patchPhase = ''
|
2015-06-24 16:41:02 +02:00
|
|
|
substituteInPlace getver.sh --replace ver=unknown ver=${version}
|
2015-01-01 16:47:24 +01:00
|
|
|
'';
|
|
|
|
|
2015-11-26 18:44:44 +01:00
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
2015-01-01 16:47:24 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Top-like tool for viewing AMD Radeon GPU utilization";
|
2015-01-12 16:30:27 +01: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 16:47:24 +01:00
|
|
|
homepage = https://github.com/clbr/radeontop;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl3;
|
2015-01-12 16:30:27 +01:00
|
|
|
maintainers = with maintainers; [ rycee nckx ];
|
2015-01-01 16:47:24 +01:00
|
|
|
};
|
|
|
|
}
|