nixpkgs-immich/pkgs/tools/misc/mmctl/default.nix
2024-09-17 10:23:40 -06:00

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";
};
})