Skip to content

Commit b8d3fd7

Browse files
authored
memogram: init at 0.2.2 (#379792)
2 parents 063c28c + 98cc435 commit b8d3fd7

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
lib,
3+
buildGoModule,
4+
fetchFromGitHub,
5+
nix-update-script,
6+
}:
7+
buildGoModule rec {
8+
pname = "memogram";
9+
version = "0.2.2";
10+
11+
src = fetchFromGitHub {
12+
owner = "usememos";
13+
repo = "telegram-integration";
14+
tag = "v${version}";
15+
hash = "sha256-CUo5fPWNE4FP1Dtwb1rPNSPP/CAJvYGYYIMAx/oeSOc=";
16+
};
17+
18+
vendorHash = "sha256-BDGA7GpXS3/esBvb3+rC8ZgtER2OgBJ1bHZ6AHP/i4s=";
19+
20+
subPackages = [ "bin/memogram" ];
21+
22+
passthru.updateScript = nix-update-script { };
23+
24+
meta = {
25+
description = "Easy to use integration service for syncing messages and images from a Telegram bot into your Memos";
26+
homepage = "https://github.com/usememos/telegram-integration";
27+
changelog = "https://github.com/usememos/telegram-integration/releases/v${version}";
28+
license = lib.licenses.mit;
29+
maintainers = with lib.maintainers; [ merrkry ];
30+
mainProgram = "memogram";
31+
platforms = lib.platforms.linux;
32+
};
33+
}

0 commit comments

Comments
 (0)