From 814fe85dc2318e052943ea93e223884443d3b6c7 Mon Sep 17 00:00:00 2001 From: 2kybe3 Date: Sun, 3 May 2026 12:37:46 +0200 Subject: [PATCH] process-viewer: 0.5.8 -> 0.5.11, adopt, `__structuredAttrs` --- pkgs/by-name/pr/process-viewer/package.nix | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/pr/process-viewer/package.nix b/pkgs/by-name/pr/process-viewer/package.nix index 570128c7752e..88e17c8a13f8 100644 --- a/pkgs/by-name/pr/process-viewer/package.nix +++ b/pkgs/by-name/pr/process-viewer/package.nix @@ -8,14 +8,17 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "process-viewer"; - version = "0.5.8"; + version = "0.5.11"; + + __structuredAttrs = true; src = fetchCrate { - inherit (finalAttrs) pname version; - hash = "sha256-mEmtLCtHlrCurjKKJ3vEtEkLBik4LwuUED5UeQ1QLws="; + inherit (finalAttrs) version; + pname = "process_viewer"; + hash = "sha256-d2qEcb9iPnhNnRFbzbktk36hyL16opcDgE9xOnmlJGg="; }; - cargoHash = "sha256-vmNqay/tYGASSez+VqyCQVMW+JGqfBvjwSKx0AG/LeY="; + cargoHash = "sha256-UD0eTRfHimp6ZGStvrP1upUe3yO3Mw96Sq3OG4Y7zn0="; nativeBuildInputs = [ pkg-config ]; @@ -31,7 +34,10 @@ rustPlatform.buildRustPackage (finalAttrs: { description = "Process viewer GUI in rust"; homepage = "https://github.com/guillaumegomez/process-viewer"; license = lib.licenses.mit; - maintainers = [ lib.maintainers.matthiasbeyer ]; + maintainers = with lib.maintainers; [ + matthiasbeyer + kybe236 + ]; mainProgram = "process_viewer"; }; })