guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit e99ad9f3951cd48a2a35f034421c2e3eaf63bbf4
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Oct 10 00:53:54 2025 +0100
gnu: Add go-gopkg-in-telebot-v3.
* gnu/packages/golang-web.scm (go-gopkg-in-telebot-v3): New variable.
Change-Id: I6ec5f6569514e1bdb6752b5c099abf98d561dbcf
---
gnu/packages/golang-web.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index ae7868c66f..741460be88 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -13404,6 +13404,36 @@ generate Go code.")
((#:tests? _ #t) #f)
((#:import-path _) "gopkg.in/jcmturner/rpc.v2")))))
+(define-public go-gopkg-in-telebot-v3
+ (package
+ (name "go-gopkg-in-telebot-v3")
+ (version "3.3.8")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/go-telebot/telebot")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0l6gl31jd1i5im037ra5qd0sd2acwk09idh89b7d97j34y2a8bv6"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "gopkg.in/telebot.v3"))
+ (native-inputs
+ (list go-github-com-stretchr-testify))
+ (propagated-inputs
+ (list go-github-com-goccy-go-yaml
+ go-github-com-spf13-viper))
+ (home-page "https://github.com/go-telebot/telebot")
+ (synopsis "Telegram bot framework in Golang")
+ (description
+ "Telebot is a bot framework for @url{https://core.telegram.org/bots/api,
+Telegram Bot API}. This package provides the best of its kind API for command
+routing, inline query requests and keyboards, as well as callbacks.")
+ (license license:expat)))
+
(define-public go-k8s-io-cri-api
(package
(name "go-k8s-io-cri-api")