Skip to content

Commit

Permalink
memogram: init at 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
merrkry committed Feb 6, 2025
1 parent e4b6440 commit 4469f72
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.0";

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

vendorHash = "sha256-8hWv8Rby9DDyQnSDZGPFgB765ln81wAvCgr0UOHyU6I=";

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 4469f72

Please sign in to comment.