about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/networking/instant-messengers/mm/default.nix
blob: b6c48a0e948c24f648b13de6f1188d590e30be60 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, buildGoModule, fetchgit }:

buildGoModule {
  pname = "mm";
  version = "2020.11.17";

  src = fetchgit {
    url = "https://git.lost.host/meutraa/mm.git";
    rev = "e5fa8eeb845aac8f28fc36013ee8a1dbe1e5710c";
    sha256 = "sha256-SdD4EE/rc85H7xqKB/kU8XFsC63i1sVObPha/zrxFGk=";
  };

  vendorHash = "sha256-zJJ9PzQShv2iRNyCg1XVscbwjV9ZtMIojJDtXXm3rVM=";

  meta = with lib; {
    description = "A file system based matrix client";
    homepage = "https://git.lost.host/meutraa/mm";
    license = licenses.isc;
    maintainers = with maintainers; [ ];
  };
}