linode-cli: meta add changelog, remove nested with

This commit is contained in:
superherointj 2024-07-15 12:20:56 -03:00
parent 592cb1ee5d
commit 66572bc175

View File

@ -79,11 +79,12 @@ buildPythonApplication rec {
passthru.updateScript = ./update.sh;
meta = with lib; {
mainProgram = "linode-cli";
meta = {
description = "Linode Command Line Interface";
changelog = "https://github.com/linode/linode-cli/releases/tag/v${version}";
homepage = "https://github.com/linode/linode-cli";
license = licenses.bsd3;
maintainers = with maintainers; [ ryantm techknowlogick ];
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ ryantm techknowlogick ];
mainProgram = "linode-cli";
};
}