guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

10/10: gnu: Add go-github-com-emersion-go-msgauth.


From: guix-commits
Subject: 10/10: gnu: Add go-github-com-emersion-go-msgauth.
Date: Sun, 27 Nov 2022 10:38:43 -0500 (EST)

raghavgururajan pushed a commit to branch master
in repository guix.

commit 992d69b1e76dfc5b342176bb15437ac2f3690ea9
Author: (unmatched-parenthesis <paren@disroot.org>
AuthorDate: Fri Oct 21 22:11:27 2022 +0100

    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>
---
 gnu/packages/golang.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index eea2d2e10d..e7a6b00bd9 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -6791,6 +6791,36 @@ format.")
 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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]