Philip Taron 22b88ba79d
treewide: adjust meta descriptions to avoid definite or indefinite articles
This patch was produced in Vim by me, a human being. All errors are the fault of the operator. I did try to be careful.

Co-authored-by: Peder Bergebakken Sundt <pbsds@hotmail.com>
Co-authored-by: dotlambda <nix@dotlambda.de>
2025-06-05 11:04:25 -07:00

40 lines
1018 B
Nix

{
lib,
buildGoModule,
fetchFromGitHub,
versionCheckHook,
testers,
nix-update-script,
moonpalace,
}:
buildGoModule rec {
pname = "moonpalace";
version = "0.12.0";
src = fetchFromGitHub {
owner = "MoonshotAI";
repo = "moonpalace";
tag = "v${version}";
hash = "sha256-30ibs49srFwTsnjbtvLUNQ79yA/vZJdlHQZ8ERi5lls=";
};
vendorHash = "sha256-e5G+28cgUJvUpS1CX/Tinn3gDK8fNEcJi8uv9xMR+5o=";
passthru = {
tests.version = testers.testVersion {
package = moonpalace;
version = "v${moonpalace.version}";
command = "HOME=$(mktemp -d) moonpalace --version";
};
updateScript = nix-update-script { };
};
meta = {
description = "API debugging tool provided by Moonshot AI";
homepage = "https://github.com/MoonshotAI/moonpalace";
changelog = "https://github.com/MoonshotAI/moonpalace/releases/tag/v${version}";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ xiaoxiangmoe ];
mainProgram = "moonpalace";
};
}