File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments