summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/golang-web.scm29
-rw-r--r--gnu/packages/golang.scm17
2 files changed, 29 insertions, 17 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index dfa1f862dca..dd84962110b 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -577,6 +577,35 @@ logging system.")
577decompose request handling into many smaller layers.") 577decompose request handling into many smaller layers.")
578 (license license:expat))) 578 (license license:expat)))
579 579
580(define-public go-github-com-go-jose-go-jose-v3
581 (package
582 (name "go-github-com-go-jose-go-jose-v3")
583 (version "3.0.0")
584 (source
585 (origin
586 (method git-fetch)
587 (uri (git-reference
588 (url "https://github.com/go-jose/go-jose")
589 (commit (string-append "v" version))))
590 (file-name (git-file-name name version))
591 (sha256
592 (base32 "1fnw0p49wc9gmd2xcji2x9jf97dgg9igagd5m6bmq3nw9jjfqdc5"))))
593 (build-system go-build-system)
594 (arguments
595 '( #:import-path "github.com/go-jose/go-jose/v3"))
596 (propagated-inputs
597 (list go-golang-org-x-crypto))
598 (native-inputs
599 (list go-github-com-google-go-cmp-cmp
600 go-github-com-stretchr-testify))
601 (home-page "https://github.com/go-jose/go-jose")
602 (synopsis "Implementation of JOSE standards (JWE, JWS, JWT) in Go")
603 (description
604 "This package provides a Golang implementation of the Javascript Object
605Signing and Encryption set of standards. This includes support for JSON Web
606Encryption, JSON Web Signature, and JSON Web Token standards.")
607 (license license:asl2.0)))
608
580(define-public go-github-com-go-telegram-bot-api-telegram-bot-api 609(define-public go-github-com-go-telegram-bot-api-telegram-bot-api
581 (package 610 (package
582 (name "go-github-com-go-telegram-bot-api-telegram-bot-api") 611 (name "go-github-com-go-telegram-bot-api-telegram-bot-api")
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 64f7981a7d9..a8f55df9153 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -3223,23 +3223,6 @@ specified. Algorithms are included to calculate yahrzeits, birthdays,
3223and anniversaries.") 3223and anniversaries.")
3224 (license license:gpl2+)))) 3224 (license license:gpl2+))))
3225 3225
3226(define-public go-github-com-go-jose-go-jose-v3
3227 (package
3228 (inherit go-gopkg-in-square-go-jose-v2)
3229 (name "go-github-com-go-jose-go-jose-v3")
3230 (version "3.0.0")
3231 (source (origin
3232 (method git-fetch)
3233 (uri (git-reference
3234 (url "https://github.com/go-jose/go-jose")
3235 (commit (string-append "v" version))))
3236 (file-name (git-file-name name version))
3237 (sha256
3238 (base32
3239 "1fnw0p49wc9gmd2xcji2x9jf97dgg9igagd5m6bmq3nw9jjfqdc5"))))
3240 (arguments
3241 (list #:import-path "github.com/go-jose/go-jose/v3"))))
3242
3243(define-public go-gopkg.in-tomb.v2 3226(define-public go-gopkg.in-tomb.v2
3244 (let ((commit "d5d1b5820637886def9eef33e03a27a9f166942c") 3227 (let ((commit "d5d1b5820637886def9eef33e03a27a9f166942c")
3245 (revision "0")) 3228 (revision "0"))