4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
46 lines
1.4 KiB
Nix
46 lines
1.4 KiB
Nix
{ lib, stdenv, fetchFromGitHub, pkgconfig, 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 = [ pkgconfig 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 ];
|
|
};
|
|
}
|