sharlatan pushed a commit to branch go-team
in repository guix.
commit 12760b7239bab847c3fe009d5a30c448329d9793
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Sep 3 20:53:06 2024 +0100
gnu: go-github-com-jaytaylor-html2text: Move to golang-web.
* gnu/packages/golang.scm (go-github-com-jaytaylor-html2text): Move from
here ...
* gnu/packages/golang-web.scm ... to here.
Change-Id: Ie2e79aa4a7f034579433f9ea7d55bcfdea1b90d8
---
gnu/packages/golang-web.scm | 27 +++++++++++++++++++++++++++
gnu/packages/golang.scm | 26 --------------------------
2 files changed, 27 insertions(+), 26 deletions(-)
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 9cd00415b2..7b4bec10d0 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -2392,6 +2392,33 @@ default LAN gateway.")
port mapping and discovering the external IP address of a firewall.")
(license license:asl2.0)))
+(define-public go-github-com-jaytaylor-html2text
+ (package
+ (name "go-github-com-jaytaylor-html2text")
+ (version "0.0.0-20230321000545-74c2419ad056")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/jaytaylor/html2text")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "14r0ph8w4yxx129kfvj0qbx4cyid65md93qmwlz2cly4iwjnr7w2"))))
+ (build-system go-build-system)
+ (arguments
+ (list #:import-path "github.com/jaytaylor/html2text"))
+ (propagated-inputs
+ (list go-golang-org-x-net
+ go-github-com-olekukonko-tablewriter
+ go-github-com-ssor-bom))
+ (home-page "https://github.com/jaytaylor/html2text")
+ (synopsis "Convert HTML emails to text")
+ (description
+ "The html2text package converts HTML emails to plain text, allowing
+text-only mail clients to display them.")
+ (license license:expat)))
+
(define-public go-github-com-jcmturner-dnsutils-v2
(package
(name "go-github-com-jcmturner-dnsutils-v2")
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index b3a9a1a39e..2da6bc63a5 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -7990,32 +7990,6 @@ result is a conceptually simple, but highly performant,
disk-backed storage syst
email library.")
(license license:gpl3+)))
-(define-public go-github-com-jaytaylor-html2text
- (package
- (name "go-github-com-jaytaylor-html2text")
- (version "0.0.0-20230321000545-74c2419ad056")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/jaytaylor/html2text")
- (commit (go-version->git-ref version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "14r0ph8w4yxx129kfvj0qbx4cyid65md93qmwlz2cly4iwjnr7w2"))))
- (build-system go-build-system)
- (arguments
- (list #:import-path "github.com/jaytaylor/html2text"))
- (propagated-inputs (list go-golang-org-x-net
- go-github-com-olekukonko-tablewriter
- go-github-com-ssor-bom))
- (home-page "https://github.com/jaytaylor/html2text")
- (synopsis "Convert HTML emails to text")
- (description
- "The html2text package converts HTML emails to plain text, allowing
-text-only mail clients to display them.")
- (license license:expat)))
-
(define-public go-github-com-riywo-loginshell
(package
(name "go-github-com-riywo-loginshell")