nixpkgs/pkgs/tools/system/amdgpu_top/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

56 lines
1.0 KiB
Nix
Raw Normal View History

{ lib
, rustPlatform
, fetchFromGitHub
, libdrm
, libX11
, libGL
, wayland
, wayland-protocols
, libxkbcommon
, libXrandr
, libXi
, libXcursor
}:
2023-05-01 22:45:55 +00:00
rustPlatform.buildRustPackage rec {
pname = "amdgpu_top";
2023-06-08 18:06:22 +00:00
version = "0.1.9";
2023-05-01 22:45:55 +00:00
src = fetchFromGitHub {
owner = "Umio-Yasuno";
repo = pname;
2023-05-18 08:18:25 +00:00
rev = "v${version}";
2023-06-08 18:06:22 +00:00
hash = "sha256-RR+YK8LyrPz7Pfv8moSOPei+56088lhoz8HxoB6+0B8=";
2023-05-01 22:45:55 +00:00
};
cargoLock.lockFile = ./Cargo.lock;
buildInputs = [
libdrm
libX11
libGL
wayland
wayland-protocols
libxkbcommon
libXrandr
libXi
libXcursor
];
postInstall = ''
install -D ./assets/${pname}.desktop -t $out/share/applications/
'';
postFixup = ''
patchelf --set-rpath "${lib.makeLibraryPath buildInputs}" $out/bin/${pname}
'';
2023-05-01 22:45:55 +00:00
meta = with lib; {
description = "Tool to display AMDGPU usage";
homepage = "https://github.com/Umio-Yasuno/amdgpu_top";
changelog = "https://github.com/Umio-Yasuno/amdgpu_top/releases";
license = licenses.mit;
maintainers = with maintainers; [ geri1701 ];
};
}