Skip to content

Commit

Permalink
memogram: init at 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
merrkry committed Feb 7, 2025
1 parent e4b6440 commit 98cc435
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions pkgs/by-name/me/memogram/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
lib,
buildGoModule,
fetchFromGitHub,
nix-update-script,
}:
buildGoModule rec {
pname = "memogram";
version = "0.2.2";

src = fetchFromGitHub {
owner = "usememos";
repo = "telegram-integration";
tag = "v${version}";
hash = "sha256-CUo5fPWNE4FP1Dtwb1rPNSPP/CAJvYGYYIMAx/oeSOc=";
};

vendorHash = "sha256-BDGA7GpXS3/esBvb3+rC8ZgtER2OgBJ1bHZ6AHP/i4s=";

subPackages = [ "bin/memogram" ];

passthru.updateScript = nix-update-script { };

meta = {
description = "Easy to use integration service for syncing messages and images from a Telegram bot into your Memos";
homepage = "https://github.com/usememos/telegram-integration";
changelog = "https://github.com/usememos/telegram-integration/releases/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ merrkry ];
mainProgram = "memogram";
platforms = lib.platforms.linux;
};
}

0 comments on commit 98cc435

Please sign in to comment.