From bfff467c608e9226d65a48172e70edd511b60d24 Mon Sep 17 00:00:00 2001 From: nartsisss Date: Sun, 6 Oct 2024 01:09:05 +0300 Subject: [PATCH] loco-cli: refactor meta --- pkgs/by-name/lo/loco-cli/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/lo/loco-cli/package.nix b/pkgs/by-name/lo/loco-cli/package.nix index 161b9919c62c..453877f87782 100644 --- a/pkgs/by-name/lo/loco-cli/package.nix +++ b/pkgs/by-name/lo/loco-cli/package.nix @@ -17,12 +17,12 @@ rustPlatform.buildRustPackage rec { #Skip trycmd integration tests checkFlags = [ "--skip=cli_tests" ]; - meta = with lib; { - mainProgram = "loco"; + meta = { description = "Loco CLI is a powerful command-line tool designed to streamline the process of generating Loco websites"; homepage = "https://loco.rs"; changelog = "https://github.com/loco-rs/loco/blob/master/CHANGELOG.md"; - license = with licenses; [ asl20 ]; - maintainers = with maintainers; [ sebrut ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ sebrut ]; + mainProgram = "loco"; }; }