nixpkgs/pkgs/os-specific/linux/radeontop/default.nix
Jonathan Ringer 9bb3fccb5b treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nix
continuation of #109595

pkgconfig was aliased in 2018, however, it remained in
all-packages.nix due to its wide usage. This cleans
up the remaining references to pkgs.pkgsconfig and
moves the entry to aliases.nix.

python3Packages.pkgconfig remained unchanged because
it's the canonical name of the upstream package
on pypi.
2021-01-19 01:16:25 -08:00

46 lines
1.4 KiB
Nix

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