2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, buildGoModule, fetchgit }:
|
2016-12-18 22:08:33 +00:00
|
|
|
|
2020-11-17 14:37:23 +00:00
|
|
|
buildGoModule {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "mm";
|
2020-11-17 14:37:23 +00:00
|
|
|
version = "2020.11.17";
|
2016-12-18 22:08:33 +00:00
|
|
|
|
2020-11-17 14:37:23 +00:00
|
|
|
src = fetchgit {
|
|
|
|
url = "https://git.lost.host/meutraa/mm.git";
|
|
|
|
rev = "e5fa8eeb845aac8f28fc36013ee8a1dbe1e5710c";
|
|
|
|
sha256 = "sha256-SdD4EE/rc85H7xqKB/kU8XFsC63i1sVObPha/zrxFGk=";
|
2016-12-18 22:08:33 +00:00
|
|
|
};
|
|
|
|
|
2020-11-17 14:37:23 +00:00
|
|
|
vendorSha256 = "sha256-zJJ9PzQShv2iRNyCg1XVscbwjV9ZtMIojJDtXXm3rVM=";
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-12-18 22:08:33 +00:00
|
|
|
description = "A file system based matrix client";
|
2020-11-17 14:37:23 +00:00
|
|
|
homepage = "https://git.lost.host/meutraa/mm";
|
2020-11-17 14:59:24 +00:00
|
|
|
license = licenses.isc;
|
|
|
|
maintainers = with maintainers; [ meutraa ];
|
2016-12-18 22:08:33 +00:00
|
|
|
};
|
|
|
|
}
|