Unverified Commit c7e14db3 authored by Morgan Jones's avatar Morgan Jones
Browse files

mattermost: disable Darwin support

https://mattermost.com/download/ does not list macOS support.
While it compiles, it's not worth supporting.
parent 0cd01cb6
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -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";
  };
}