depot/third_party/nixpkgs/pkgs/tools/misc/mmctl/default.nix

13 lines
209 B
Nix
Raw Normal View History

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