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