gnu: go-github-com-go-jose-go-jose-v3: Move to (gnu packages golang-web).
Drop inheritance from go-gopkg-in-square-go-jose-v2 as it's archived by the owner on Feb 27, 2023. * gnu/packages/golang.scm (go-github-com-go-jose-go-jose-v3): Move from here ... * gnu/packages/golang-web.scm: ... to here. Change-Id: I67838e18a43d93e5ae3b62e9645b7d22cf474103
This commit is contained in:
parent
f6bbee5f05
commit
fb2b72a5f3
2 changed files with 29 additions and 17 deletions
|
@ -577,6 +577,35 @@ logging system.")
|
||||||
decompose request handling into many smaller layers.")
|
decompose request handling into many smaller layers.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public go-github-com-go-jose-go-jose-v3
|
||||||
|
(package
|
||||||
|
(name "go-github-com-go-jose-go-jose-v3")
|
||||||
|
(version "3.0.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/go-jose/go-jose")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1fnw0p49wc9gmd2xcji2x9jf97dgg9igagd5m6bmq3nw9jjfqdc5"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
'( #:import-path "github.com/go-jose/go-jose/v3"))
|
||||||
|
(propagated-inputs
|
||||||
|
(list go-golang-org-x-crypto))
|
||||||
|
(native-inputs
|
||||||
|
(list go-github-com-google-go-cmp-cmp
|
||||||
|
go-github-com-stretchr-testify))
|
||||||
|
(home-page "https://github.com/go-jose/go-jose")
|
||||||
|
(synopsis "Implementation of JOSE standards (JWE, JWS, JWT) in Go")
|
||||||
|
(description
|
||||||
|
"This package provides a Golang implementation of the Javascript Object
|
||||||
|
Signing and Encryption set of standards. This includes support for JSON Web
|
||||||
|
Encryption, JSON Web Signature, and JSON Web Token standards.")
|
||||||
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public go-github-com-go-telegram-bot-api-telegram-bot-api
|
(define-public go-github-com-go-telegram-bot-api-telegram-bot-api
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-go-telegram-bot-api-telegram-bot-api")
|
(name "go-github-com-go-telegram-bot-api-telegram-bot-api")
|
||||||
|
|
|
@ -3223,23 +3223,6 @@ specified. Algorithms are included to calculate yahrzeits, birthdays,
|
||||||
and anniversaries.")
|
and anniversaries.")
|
||||||
(license license:gpl2+))))
|
(license license:gpl2+))))
|
||||||
|
|
||||||
(define-public go-github-com-go-jose-go-jose-v3
|
|
||||||
(package
|
|
||||||
(inherit go-gopkg-in-square-go-jose-v2)
|
|
||||||
(name "go-github-com-go-jose-go-jose-v3")
|
|
||||||
(version "3.0.0")
|
|
||||||
(source (origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/go-jose/go-jose")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"1fnw0p49wc9gmd2xcji2x9jf97dgg9igagd5m6bmq3nw9jjfqdc5"))))
|
|
||||||
(arguments
|
|
||||||
(list #:import-path "github.com/go-jose/go-jose/v3"))))
|
|
||||||
|
|
||||||
(define-public go-gopkg.in-tomb.v2
|
(define-public go-gopkg.in-tomb.v2
|
||||||
(let ((commit "d5d1b5820637886def9eef33e03a27a9f166942c")
|
(let ((commit "d5d1b5820637886def9eef33e03a27a9f166942c")
|
||||||
(revision "0"))
|
(revision "0"))
|
||||||
|
|
Reference in a new issue