mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
9fb8020e4e
This will probably be mandatory soon, and is a step in the right direction. Removes the deprecated meta.version, and move some meta sections to the end of the file where I should have put them in the first place.
40 lines
1.3 KiB
Nix
40 lines
1.3 KiB
Nix
{ stdenv, fetchFromGitHub, pkgconfig, gettext, ncurses, libdrm, libpciaccess }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "radeontop-${version}";
|
|
version = "2015-11-24";
|
|
|
|
src = fetchFromGitHub {
|
|
sha256 = "0irwq6rps5mnban8cxbrm59wpyv4j80q3xdjm9fxvfpiyys2g2hz";
|
|
rev = "0e82272f3e8f2287c1bc1d8a0c7bdbd5c4818b37";
|
|
repo = "radeontop";
|
|
owner = "clbr";
|
|
};
|
|
|
|
buildInputs = [ ncurses libdrm libpciaccess ];
|
|
nativeBuildInputs = [ pkgconfig gettext ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
patchPhase = ''
|
|
substituteInPlace getver.sh --replace ver=unknown ver=${version}
|
|
'';
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
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.
|
|
'';
|
|
homepage = https://github.com/clbr/radeontop;
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ rycee nckx ];
|
|
};
|
|
}
|