mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-13 23:53:26 +00:00
![aleksana](/assets/img/avatar_default.png)
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
47 lines
1.4 KiB
Nix
47 lines
1.4 KiB
Nix
{ lib, stdenv, fetchFromGitHub, pkg-config, gettext, makeWrapper
|
|
, ncurses, libdrm, libpciaccess, libxcb }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "radeontop";
|
|
version = "1.4";
|
|
|
|
src = fetchFromGitHub {
|
|
sha256 = "0kwqddidr45s1blp0h8r8h1dd1p50l516yb6mb4s6zsc827xzgg3";
|
|
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}
|
|
substituteInPlace Makefile --replace pkg-config "$PKG_CONFIG"
|
|
'';
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/radeontop \
|
|
--prefix LD_LIBRARY_PATH : $out/lib
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Top-like tool for viewing AMD Radeon GPU utilization";
|
|
mainProgram = "radeontop";
|
|
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.
|
|
'';
|
|
homepage = "https://github.com/clbr/radeontop";
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl3;
|
|
};
|
|
}
|