diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-07-28 22:53:29 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-07-28 22:53:29 +0100 |
commit | 892c4cace7ae8c366e423366f5094a37486ffc59 (patch) | |
tree | b9d5fe43f6a9fa5ee4c81f4335f8bb5392f354eb /gnu/packages/golang-web.scm | |
parent | 1434e3aeeab176d6271f912066a0b4eb18bd7759 (diff) | |
download | guix-892c4cace7ae8c366e423366f5094a37486ffc59.tar.gz guix-892c4cace7ae8c366e423366f5094a37486ffc59.zip |
gnu: go-github-com-emersion-go-sasl: Move to golang-web.
* gnu/packages/golang.scm (go-github-com-emersion-go-sasl): Move from
here ...
* gnu/packages/golang-web.scm: ... to here.
Change-Id: I00729892042a0054b4749693f08cb36c9de72dd9
Diffstat (limited to 'gnu/packages/golang-web.scm')
-rw-r--r-- | gnu/packages/golang-web.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index 4d9f0c0882..70397c311f 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -934,6 +934,31 @@ for Go.") "This package provides a Go library for authenticating emails.") (license license:expat))) +(define-public go-github-com-emersion-go-sasl + (let ((commit "0b9dcfb154ac3d7515b08bc2691a0332800edfe9") + (revision "1")) + (package + (name "go-github-com-emersion-go-sasl") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/emersion/go-sasl") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1cbf86wkqrdinfydndgdlnayg4a5mg3d4vqra377j2sfkg7wj0hs")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/emersion/go-sasl")) + (home-page "https://github.com/emersion/go-sasl") + (synopsis "SASL library written in Go") + (description + "This package provides a SASL library written in Go.") + (license license:expat)))) + (define-public go-github-com-emicklei-go-restful (package (name "go-github-com-emicklei-go-restful") |