From c7e14db3ba71deb86b9eece97a717db0f8d837a4 Mon Sep 17 00:00:00 2001 From: Morgan Jones Date: Sun, 16 Feb 2025 17:34:07 -0800 Subject: [PATCH] mattermost: disable Darwin support https://mattermost.com/download/ does not list macOS support. While it compiles, it's not worth supporting. --- pkgs/by-name/ma/mattermost/package.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ma/mattermost/package.nix b/pkgs/by-name/ma/mattermost/package.nix index 03763b6f3f16..eec0732b6f73 100644 --- a/pkgs/by-name/ma/mattermost/package.nix +++ b/pkgs/by-name/ma/mattermost/package.nix @@ -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"; }; }