13 lines
232 B
Nix
13 lines
232 B
Nix
{
|
|
mattermost,
|
|
}:
|
|
|
|
mattermost.withoutTests.server.overrideAttrs (o: {
|
|
pname = "mmctl";
|
|
subPackages = [ "cmd/mmctl" ];
|
|
|
|
meta = o.meta // {
|
|
description = "Remote CLI tool for Mattermost";
|
|
mainProgram = "mmctl";
|
|
};
|
|
})
|