mattermost: disable Darwin support

https://mattermost.com/download/ does not list macOS support.
While it compiles, it's not worth supporting.
This commit is contained in:
Morgan Jones 2025-02-16 17:34:07 -08:00
parent 0cd01cb63e
commit c7e14db3ba
No known key found for this signature in database
GPG Key ID: 5C3EB94D198F1491

View File

@ -246,20 +246,21 @@ buildMattermost rec {
};
};
meta = with lib; {
meta = {
description = "Mattermost is an open source platform for secure collaboration across the entire software development lifecycle";
homepage = "https://www.mattermost.org";
license = with licenses; [
license = with lib.licenses; [
agpl3Only
asl20
];
maintainers = with maintainers; [
maintainers = with lib.maintainers; [
ryantm
numinit
kranzes
mgdelacroix
fsagbuya
];
platforms = lib.platforms.linux;
mainProgram = "mattermost";
};
}