amdgpu_top 0.1.8 -> 0.1.9 https://repology.org/project/amdgpu-top/versions attrpath: amdgpu_top Checking auto update branch... No auto update branch exists Old version 0.1.8" not present in master derivation file with contents: { lib , rustPlatform , fetchFromGitHub , libdrm , libX11 , libGL , wayland , wayland-protocols , libxkbcommon , libXrandr , libXi , libXcursor }: rustPlatform.buildRustPackage rec { pname = "amdgpu_top"; version = "0.1.9"; src = fetchFromGitHub { owner = "Umio-Yasuno"; repo = pname; rev = "v${version}"; hash = "sha256-RR+YK8LyrPz7Pfv8moSOPei+56088lhoz8HxoB6+0B8="; }; 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} ''; 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 ]; }; }