mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 07:16:39 +01:00
gnu: Add go-github-com-emersion-go-msgauth.
* gnu/packages/golang.scm (go-github-com-emersion-go-msgauth): New variable. Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name>
This commit is contained in:
parent
088af73409
commit
992d69b1e7
1 changed files with 30 additions and 0 deletions
|
@ -6791,6 +6791,36 @@ (define-public go-github-com-emersion-go-milter
|
|||
filters for Go.")
|
||||
(license license:bsd-2)))
|
||||
|
||||
(define-public go-github-com-emersion-go-msgauth
|
||||
(package
|
||||
(name "go-github-com-emersion-go-msgauth")
|
||||
(version "0.6.6")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/emersion/go-msgauth")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0ds8yr4cm9wigcxg1sxc2m0wmy4z9n6gws3mj50dmf2ayij69z9j"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
(list #:import-path "github.com/emersion/go-msgauth"
|
||||
#:tests? #f ; Source-only package.
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
;; Source-only package.
|
||||
(delete 'build))))
|
||||
(propagated-inputs (list go-golang-org-x-crypto
|
||||
go-github-com-emersion-go-milter
|
||||
go-github-com-emersion-go-message))
|
||||
(home-page "https://github.com/emersion/go-msgauth")
|
||||
(synopsis "Email authentication for Go")
|
||||
(description
|
||||
"This package provides a Go library for authenticating emails.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public go-github-com-fatih-color
|
||||
(package
|
||||
(name "go-github-com-fatih-color")
|
||||
|
|
Loading…
Reference in a new issue