Skip to content

Commit

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

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

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

subPackages = [ "bin/memogram" ];

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

0 comments on commit 25d493a

Please sign in to comment.