File tree 2 files changed +42
-0
lines changed
pkgs/by-name/po/postmoogle
2 files changed +42
-0
lines changed Original file line number Diff line number Diff line change 1234
1234
githubId = 37040543;
1235
1235
name = "Wroclaw";
1236
1236
};
1237
+ amuckstot30 = {
1238
+
1239
+ github = "amuckstot30";
1240
+ githubId = 157274630;
1241
+ name = "amuckstot30";
1242
+ };
1237
1243
amyipdev = {
1238
1244
1239
1245
github = "amyipdev";
Original file line number Diff line number Diff line change
1
+ {
2
+ lib ,
3
+ buildGoModule ,
4
+ fetchFromGitHub ,
5
+ } :
6
+ buildGoModule rec {
7
+ pname = "postmoogle" ;
8
+ version = "0.9.21" ;
9
+
10
+ src = fetchFromGitHub {
11
+ owner = "etkecc" ;
12
+ repo = "postmoogle" ;
13
+ rev = "refs/tags/v${ version } " ;
14
+ hash = "sha256-/AuxrIvxoKb08uf4EOYXorl7vJ99KgEH9DZYLidDzI4=" ;
15
+ } ;
16
+
17
+ tags = [
18
+ "timetzdata"
19
+ "goolm"
20
+ ] ;
21
+
22
+ vendorHash = null ;
23
+
24
+ postInstall = ''
25
+ mv $out/bin/cmd $out/bin/postmoogle
26
+ '' ;
27
+
28
+ meta = with lib ; {
29
+ description = "Postmoogle is Matrix <-> Email bridge in a form of an SMTP server" ;
30
+ homepage = "https://github.com/etkecc/postmoogle" ;
31
+ changelog = "https://github.com/etkecc/postmoogle/releases/tag/v0.9.21" ;
32
+ license = licenses . agpl3Only ;
33
+ maintainers = with maintainers ; [ amuckstot30 ] ;
34
+ mainProgram = "postmoogle" ;
35
+ } ;
36
+ }
You can’t perform that action at this time.
0 commit comments