nixpkgs/pkgs/os-specific/linux/radeontop/default.nix

46 lines
1.4 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, pkg-config, gettext, makeWrapper
, ncurses, libdrm, libpciaccess, libxcb }:
2015-01-01 15:47:24 +00:00
stdenv.mkDerivation rec {
pname = "radeontop";
2020-12-29 07:43:15 +00:00
version = "1.3";
2015-01-01 15:47:24 +00:00
2015-02-05 23:05:48 +00:00
src = fetchFromGitHub {
2020-12-29 07:43:15 +00:00
sha256 = "sha256-tnIxM0+RfOIt714fEUWRP/4rEPHaOuCZFit9/RPdxis=";
rev = "v${version}";
2015-02-05 23:05:48 +00:00
repo = "radeontop";
owner = "clbr";
2015-01-01 15:47:24 +00:00
};
buildInputs = [ ncurses libdrm libpciaccess libxcb ];
nativeBuildInputs = [ pkg-config gettext makeWrapper ];
2015-01-01 15:47:24 +00:00
enableParallelBuilding = true;
2015-01-01 15:47:24 +00:00
patchPhase = ''
substituteInPlace getver.sh --replace ver=unknown ver=${version}
2015-01-01 15:47:24 +00:00
'';
makeFlags = [ "PREFIX=$(out)" ];
2015-01-01 15:47:24 +00:00
postInstall = ''
wrapProgram $out/sbin/radeontop \
--prefix LD_LIBRARY_PATH : $out/lib
'';
meta = with lib; {
2015-01-01 15:47:24 +00:00
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.
'';
homepage = "https://github.com/clbr/radeontop";
2015-01-01 15:47:24 +00:00
platforms = platforms.linux;
license = licenses.gpl3;
maintainers = with maintainers; [ rycee ];
2015-01-01 15:47:24 +00:00
};
}