diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-06-12 11:50:29 +0100 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-26 19:55:46 +0200 |
commit | c414cdfa002a43cc550b96d009e5ba3e5a477b43 (patch) | |
tree | d48cffd79b75c22a1f6a42d96735f89b80587b07 | |
parent | 728b55e65e1e31fa9bd36b038023805ab4be1745 (diff) |
gnu: Add go-github-com-jhillyerd-enmime-v2.
* gnu/packages/golang-web.scm (go-github-com-jhillyerd-enmime-v2): New variable.
Change-Id: Idcb7b321361071b5f4b37a5d17f2eb9d7e8e2a69
-rw-r--r-- | gnu/packages/golang-web.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index 43086aaa92..9f9348071e 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -5343,6 +5343,24 @@ about missing required fields, or when pattern validation does not match.") geared towards parsing MIME encoded emails.") (license license:expat))) +(define-public go-github-com-jhillyerd-enmime-v2 + (package + (inherit go-github-com-jhillyerd-enmime) + (name "go-github-com-jhillyerd-enmime-v2") + (version "2.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jhillyerd/enmime") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ahw8bxwp8zbi7qgq2d49hd31iznc8njjjzk84xmxa30qyb3ilgc")))) + (arguments + (list + #:import-path "github.com/jhillyerd/enmime/v2")))) + (define-public go-github-com-jlaffaye-ftp (package (name "go-github-com-jlaffaye-ftp") |