67 lines
1.3 KiB
Nix
67 lines
1.3 KiB
Nix
|
{
|
||
|
lib,
|
||
|
rustPlatform,
|
||
|
fetchFromGitHub,
|
||
|
libdrm,
|
||
|
libX11,
|
||
|
libGL,
|
||
|
wayland,
|
||
|
wayland-protocols,
|
||
|
libxkbcommon,
|
||
|
libXrandr,
|
||
|
libXi,
|
||
|
libXcursor,
|
||
|
nix-update-script,
|
||
|
}:
|
||
|
|
||
|
rustPlatform.buildRustPackage rec {
|
||
|
pname = "amdgpu_top";
|
||
|
version = "0.9.2";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "Umio-Yasuno";
|
||
|
repo = pname;
|
||
|
rev = "v${version}";
|
||
|
hash = "sha256-eXUeXBFW2ejkOeMUujMwY0gidzdaX9yWWOfx1ZwA3lk=";
|
||
|
};
|
||
|
|
||
|
cargoLock = {
|
||
|
lockFile = ./Cargo.lock;
|
||
|
outputHashes = {
|
||
|
"libdrm_amdgpu_sys-0.7.5" = "sha256-IkA1kJggkaSWzdDBHpNjU8WZr6wpSQWohERiHWQS2UY=";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
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}
|
||
|
'';
|
||
|
|
||
|
passthru.updateScript = nix-update-script { };
|
||
|
|
||
|
meta = {
|
||
|
description = "Tool to display AMDGPU usage";
|
||
|
homepage = "https://github.com/Umio-Yasuno/amdgpu_top";
|
||
|
changelog = "https://github.com/Umio-Yasuno/amdgpu_top/releases";
|
||
|
license = lib.licenses.mit;
|
||
|
maintainers = with lib.maintainers; [ geri1701 ];
|
||
|
platforms = lib.platforms.linux;
|
||
|
mainProgram = "amdgpu_top";
|
||
|
};
|
||
|
}
|