Watch
1
1
Fork
You've already forked nexus
0
mirror of https://git.federated.nexus/Nexus/nexus.git synced 2026-07-31 16:07:26 +00:00
A simple and user-friendly Matrix client made with Flutter and a Gomuks backend.
  • Dart 84.8%
  • C++ 7.5%
  • CMake 5.2%
  • Nix 1.3%
  • Swift 0.6%
  • Other 0.6%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
Henry-Hiles 115bec5f05
slightly tweak readme
[skip ci]
2026-07-31 11:55:48 -04:00
.github/workflows comment out macos CI auto running [skip ci] 2026-07-28 20:39:03 -04:00
.vscode OAuth Support (#53) 2026-07-20 19:46:18 -04:00
android remove old comment in gradle 2026-07-20 20:41:09 -04:00
assets fixup oauth animation 2026-07-24 10:13:20 -04:00
gomuks@0f8fb261ab download audio and video using gomuks 2026-07-27 15:46:08 -04:00
hook refactor build.dart 2026-07-13 18:38:34 -04:00
lib persist member list opened status 2026-07-31 10:20:06 -04:00
linux only include wayland in devshell on macos 2026-07-28 17:16:21 -04:00
macos add support for sending media 2026-07-21 20:19:01 -04:00
scripts use libclang.dylib on macos 2026-07-28 15:57:39 -04:00
windows OAuth Support (#53) 2026-07-20 19:46:18 -04:00
.envrc first commit 2025-11-10 14:50:58 -05:00
.gitignore add nix package 2026-03-25 11:40:31 -04:00
.gitmodules download audio and video using gomuks 2026-07-27 15:46:08 -04:00
.metadata add macos folder 2026-07-07 15:49:07 -04:00
analysis_options.yaml wip go 2026-01-30 18:45:30 +01:00
build.yaml wip go 2 2026-01-30 18:45:30 +01:00
DEVELOPMENT.md more restrictive ai policy 2026-07-03 14:04:07 -04:00
devtools_options.yaml fix display name metadata 2026-02-13 17:55:39 -05:00
flake.lock OAuth Support (#53) 2026-07-20 19:46:18 -04:00
flake.nix OAuth Support (#53) 2026-07-20 19:46:18 -04:00
LICENSE add gpl 3 2026-03-19 19:58:29 -04:00
pubspec.lock use gomuks for downloading media 2026-07-26 23:01:36 -04:00
pubspec.yaml use gomuks for downloading media 2026-07-26 23:01:36 -04:00
README.md slightly tweak readme 2026-07-31 11:55:48 -04:00

Nexus Client

Warning

Nexus Client is still in development, and doesn't support everything needed for daily use.

Description

A simple and user-friendly Matrix client made with Flutter and a Gomuks backend.

Screenshots

Dark Mode Light Mode
Screenshot of Nexus Client in dark mode, showing users talking, with a sidebar showing rooms and spaces, and another sidebar showing members The same screenshot as above, but in light mode

Progress

  • Platform Support
    • Linux
    • Windows
    • Android
    • MacOS (#50)
    • iOS
    • Web (may not be possible)
  • Login (via OAuth)
  • Rooms / Spaces
    • Displaying and choosing
    • Reading, showing unread
      • Mark as read button on rooms and spaces
    • Searching
    • Creating (Rooms, Spaces, and DMs)
    • Joining
      • Parse vias
      • Using a text/uri/link
        • Plain text
        • matrix: Uri
        • Matrix.to link
      • From space
      • From directory
    • Leaving
    • Subspaces
  • Messages
    • Encryption
      • Restoring crypto identity from a recovery passphrase/key
    • Sending
      • Plain text
      • HTML/Markdown
      • Replies
        • Choose ping on/off
      • Per message profiles
      • Attachments
      • Commands with MSC4391
      • Mentions
        • Users
        • Rooms
        • Inline emoji picker (Putting this here since it'll be implemented the same way as mentions)
      • Custom emojis/stickers
      • GIFs using Gomuks' GIF proxies
    • Receiving
      • Plain text
      • Per message profiles
      • HTML
      • URL Previews
      • Replies
        • Viewing
        • Jump to original message
          • In loaded timeline
          • Out of loaded timeline
      • Edits
      • Attachments
        • Unencrypted
        • Encrypted
        • Blurhashing
        • Downloading attachments
        • Opening attachments in their own view
      • Polls
      • Mentions
        • Users
          • Clickable
        • Rooms
          • Clickable
          • Matrix URIs
          • Matrix.to links
        • Events
          • Render more nicely
          • Clickable
      • Custom emojis/stickers
      • History loading
    • Editing
    • Deleting
  • Reactions
  • Pins
    • Displaying
    • Pinning/Unpinning
  • Threads
  • Profile popouts
    • Working actions
  • Copy link to:
    • Room
    • Space
    • Message
  • Reporting
    • Events
    • Rooms
  • Member list
    • Sort by power level
    • Colors based off of power level
  • Notifications using UnifiedPush (#35)
  • Group calls using MSC4195
  • Invites
  • Settings

Try it out

If you want to try out Nexus, grab one of the following artifacts from CI:

Build it yourself

Prerequisites

Linux

  • With Nix: Either use direnv and direnv allow, or nix flake develop
  • Without Nix: Install Flutter, Go, Git, Libclang, Libass, MPV, and Glibc. Do not use any Snap packages, they cause various compilation issues.

Windows

You will need:

On Windows, make sure these are available in your shell PATH:

  • C:\msys64\ucrt64\bin (or your MinGW bin path containing x86_64-w64-mingw32-gcc.exe)
  • C:\Program Files\LLVM\bin (contains clang.exe and libclang.dll)

For dart scripts/generate.dart, you may also need:

$env:CPATH = "C:\msys64\ucrt64\include"

MacOS

Similar prerequisites apply (Flutter, Git, Go, C toolchain, LLVM/libclang), but exact setup has not been fully documented yet.

Clone repo

First, clone and open the repo:

git clone --recurse-submodules https://git.federated.nexus/Nexus/nexus
cd nexus

Set up Flutter

Get dependencies:

flutter pub get

Generate Gomuks bindings:

dart scripts/generate.dart

Note

If you are having issues with stddef.h not being found, try setting CPATH manually:

export CPATH="$(clang -v 2>&1 | grep "Selected GCC installation" | rev | cut -d' ' -f1 | rev)/include"

Build generated files, and watch for new changes:

flutter pub run build_runner watch

Run the app:

flutter run

Development instructions can be found in DEVELOPMENT.md.

Community

Join the Nexus Client Matrix room for questions or help with developing or using Nexus Client.

Credits

Thank you Hylke Bons (https://planetpeanut.studio) for making the amazing icon for Nexus! Thank you Tulir Asokan for making Gomuks, and helping us integrate it into Nexus!