From c3efe397817703e21bfa3a5f62ab88fcb2c38e10 Mon Sep 17 00:00:00 2001 From: nartsisss Date: Tue, 26 Nov 2024 01:37:24 +0300 Subject: [PATCH] topiary: refactor meta --- pkgs/by-name/to/topiary/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/to/topiary/package.nix b/pkgs/by-name/to/topiary/package.nix index 1fe58fde5222..7ff9bca4238e 100644 --- a/pkgs/by-name/to/topiary/package.nix +++ b/pkgs/by-name/to/topiary/package.nix @@ -67,12 +67,12 @@ rustPlatform.buildRustPackage rec { passthru.updateScript = nix-update-script { }; - meta = with lib; { + meta = { description = "Uniform formatter for simple languages, as part of the Tree-sitter ecosystem"; mainProgram = "topiary"; homepage = "https://github.com/tweag/topiary"; changelog = "https://github.com/tweag/topiary/blob/${src.tag}/CHANGELOG.md"; - license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ figsoda ]; }; }