1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-14 16:46:09 +00:00
nixpkgs/pkgs/os-specific/linux/radeontop/default.nix

39 lines
1.3 KiB
Nix
Raw Normal View History

2015-02-05 23:05:48 +00:00
{ stdenv, fetchFromGitHub, pkgconfig, gettext, ncurses, libdrm, libpciaccess }:
2015-01-01 15:47:24 +00:00
let version = "2015-05-28"; in
2015-02-05 23:05:48 +00:00
stdenv.mkDerivation {
2015-01-01 15:47:24 +00:00
name = "radeontop-${version}";
2015-02-05 23:05:48 +00:00
src = fetchFromGitHub {
sha256 = "0s281fblqbvl7vgaqiwh3s16y0bah3z0i1ssf4mbwl2iayj1cliq";
rev = "b9428f18ea4631fdd5f9ccee81570aa7ac472c07";
2015-02-05 23:05:48 +00:00
repo = "radeontop";
owner = "clbr";
2015-01-01 15:47:24 +00:00
};
buildInputs = [ pkgconfig gettext ncurses libdrm libpciaccess ];
enableParallelBuilding = true;
2015-01-01 15:47:24 +00:00
patchPhase = ''
substituteInPlace getver.sh --replace ver=unknown ver=${version}-git
2015-01-01 15:47:24 +00:00
'';
makeFlags = "PREFIX=$(out)";
2015-01-01 15:47:24 +00:00
meta = with stdenv.lib; {
description = "Top-like tool for viewing AMD Radeon GPU utilization";
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 15:47:24 +00:00
homepage = https://github.com/clbr/radeontop;
platforms = platforms.linux;
license = licenses.gpl3;
maintainers = with maintainers; [ rycee nckx ];
2015-01-01 15:47:24 +00:00
};
}