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