bottom: use finalAttrs pattern

This commit is contained in:
Pol Dellaiera
2025-11-16 17:25:55 +01:00
parent fa6d8a200e
commit 2dc8f268ee

View File

@@ -8,14 +8,14 @@
nix-update-script, nix-update-script,
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage (finalAttrs: {
pname = "bottom"; pname = "bottom";
version = "0.11.3"; version = "0.11.3";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "ClementTsang"; owner = "ClementTsang";
repo = "bottom"; repo = "bottom";
tag = version; tag = finalAttrs.version;
hash = "sha256-7rVvKAqK8hqICnSr/Ax9ndsIZAdTaUyOAoVZ13W5BJs="; hash = "sha256-7rVvKAqK8hqICnSr/Ax9ndsIZAdTaUyOAoVZ13W5BJs=";
}; };
@@ -52,7 +52,7 @@ rustPlatform.buildRustPackage rec {
}; };
meta = { meta = {
changelog = "https://github.com/ClementTsang/bottom/blob/${version}/CHANGELOG.md"; changelog = "https://github.com/ClementTsang/bottom/blob/${finalAttrs.version}/CHANGELOG.md";
description = "Cross-platform graphical process/system monitor with a customizable interface"; description = "Cross-platform graphical process/system monitor with a customizable interface";
homepage = "https://github.com/ClementTsang/bottom"; homepage = "https://github.com/ClementTsang/bottom";
license = lib.licenses.mit; license = lib.licenses.mit;
@@ -62,4 +62,4 @@ rustPlatform.buildRustPackage rec {
gepbird gepbird
]; ];
}; };
} })