gnu: go-github-com-emersion-go-msgauth: Move to golang-web.

* gnu/packages/golang.scm (go-github-com-emersion-go-msgauth): Move from
here ...
* gnu/packages/golang-web.scm: ... to here.

Change-Id: Iec9f8d3f488668c188a96dae53046ad0075781ff
This commit is contained in:
Sharlatan Hellseher 2024-07-28 22:40:03 +01:00
parent b09861ec7c
commit 35438093a4
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 32 additions and 30 deletions

View file

@ -897,6 +897,38 @@ (define-public go-github-com-emersion-go-milter
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.8")
(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 "0az83i6jmk3bjglgdqw5zsvhh8698rav0mcg4dy8kr0cgq0lj5zs"))))
(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-emicklei-go-restful
(package
(name "go-github-com-emicklei-go-restful")

View file

@ -5643,36 +5643,6 @@ (define-public go-github-com-emersion-go-sasl
(description "This package provides a SASL library written in Go.")
(license license:expat))))
(define-public go-github-com-emersion-go-msgauth
(package
(name "go-github-com-emersion-go-msgauth")
(version "0.6.8")
(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
"0az83i6jmk3bjglgdqw5zsvhh8698rav0mcg4dy8kr0cgq0lj5zs"))))
(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-google-uuid
(package
(name "go-github-com-google-uuid")