From d597f4d7f4d57e8b075522e6b7d6fa84bf68c8f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gutyina=20Gerg=C5=91?= Date: Sat, 30 Nov 2024 21:30:02 +0100 Subject: [PATCH] bottom: remove `with lib;`, order `meta` attrs --- pkgs/by-name/bo/bottom/package.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/bo/bottom/package.nix b/pkgs/by-name/bo/bottom/package.nix index 48266986baaa..95bdc0aff521 100644 --- a/pkgs/by-name/bo/bottom/package.nix +++ b/pkgs/by-name/bo/bottom/package.nix @@ -49,15 +49,15 @@ rustPlatform.buildRustPackage rec { package = bottom; }; - meta = with lib; { + meta = { + changelog = "https://github.com/ClementTsang/bottom/blob/${version}/CHANGELOG.md"; description = "Cross-platform graphical process/system monitor with a customizable interface"; homepage = "https://github.com/ClementTsang/bottom"; - changelog = "https://github.com/ClementTsang/bottom/blob/${version}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + mainProgram = "btm"; + maintainers = with lib.maintainers; [ berbiche figsoda ]; - mainProgram = "btm"; }; }