blob: 929dfb83872d9da2168dcd18abcfe601467b4966 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "postmoogle";
version = "0.9.26";
src = fetchFromGitHub {
owner = "etkecc";
repo = "postmoogle";
tag = "v${version}";
hash = "sha256-nbkPwHMQTadflHE8q525cB4cgVNxldOMBi4Kwrp52rE=";
};
tags = [
"timetzdata"
"goolm"
];
vendorHash = null;
meta = {
description = "Postmoogle is Matrix <-> Email bridge in a form of an SMTP server";
homepage = "https://github.com/etkecc/postmoogle";
changelog = "https://github.com/etkecc/postmoogle/releases/tag/v${version}";
license = lib.licenses.agpl3Only;
maintainers = with lib.maintainers; [ amuckstot30 ];
mainProgram = "postmoogle";
};
}
|