diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-07-26 21:03:43 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-07-26 21:04:26 +0100 |
commit | c91cfc0cd03797ef5536388b4c709033b1aef9b3 (patch) | |
tree | 01d1902741f91ea17d91b487023cbc39a95d331e /gnu/packages/golang-web.scm | |
parent | cec2654f9757e0a92a552018d4c72fdb630625bb (diff) | |
download | guix-c91cfc0cd03797ef5536388b4c709033b1aef9b3.tar.gz guix-c91cfc0cd03797ef5536388b4c709033b1aef9b3.zip |
gnu: Remove go-github-com-go-telegram-bot-api-telegram-bot-api.
The project is abandoned and not in used within Guix.
<https://github.com/go-telegram-bot-api/telegram-bot-api/issues/721>
* gnu/packages/golang-web.scm (go-github-com-go-telegram-bot-api-telegram-bot-api):
Delete variable.
Change-Id: I3c9525692f4b4f1c17b2c45a2331e71c7a6e42ac
Diffstat (limited to 'gnu/packages/golang-web.scm')
-rw-r--r-- | gnu/packages/golang-web.scm | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index 276a8a9ad2..3665ab73c3 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -923,31 +923,6 @@ Encryption, JSON Web Signature, and JSON Web Token standards.") language.") (license license:expat))) -(define-public go-github-com-go-telegram-bot-api-telegram-bot-api - (package - (name "go-github-com-go-telegram-bot-api-telegram-bot-api") - (version "4.6.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/go-telegram-bot-api/telegram-bot-api") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1x6j0k3aiicsr8l53na99ci10zm3qpn2syz4f60fzh164w5k1l7w")))) - (build-system go-build-system) - (home-page "https://go-telegram-bot-api.dev/") - (arguments - (list #:tests? #f ; Upstream tests are broken. - #:import-path "github.com/go-telegram-bot-api/telegram-bot-api")) - (propagated-inputs - (list go-github-com-technoweenie-multipartstreamer)) - (synopsis "Golang bindings for the Telegram Bot API") - (description - "This package provides Golang bindings for the Telegram Bot API.") - (license license:expat))) - (define-public go-github-com-go-webauthn-webauthn (package (name "go-github-com-go-webauthn-webauthn") |