gnu: Add go-github-com-emersion-go-milter.

* gnu/packages/golang.scm (go-github-com-emersion-go-milter): New
  variable.

Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name>
This commit is contained in:
(unmatched-parenthesis 2022-10-21 22:11:26 +01:00 committed by Raghav Gururajan
parent 22789276b5
commit 088af73409
No known key found for this signature in database
GPG key ID: 5F5816647F8BE551

View file

@ -6767,6 +6767,30 @@ (define-public go-github-com-emersion-go-maildir
format.")
(license license:expat)))
(define-public go-github-com-emersion-go-milter
(package
(name "go-github-com-emersion-go-milter")
(version "0.3.3")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/emersion/go-milter")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"10vpry5gjz2bh9qchcx4p59zm7cc6cb6bfkii2n6vsn4svb950sa"))))
(build-system go-build-system)
(arguments
(list #:import-path "github.com/emersion/go-milter"))
(propagated-inputs (list go-github-com-emersion-go-message))
(home-page "https://github.com/emersion/go-milter")
(synopsis "Milter mail filters in Go")
(description
"This package provides an interface for implementing milter mail
filters for Go.")
(license license:bsd-2)))
(define-public go-github-com-fatih-color
(package
(name "go-github-com-fatih-color")