mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-17 20:27:36 -05:00
gnu: Add go-github-com-dvsekhvalnov-jose2go
* gnu/packages/golang.scm (go-github-com-dvsekhvalnov-jose2go): New variable. Co-authored-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
e556e97f90
commit
bf87faff3c
1 changed files with 26 additions and 0 deletions
|
@ -8869,3 +8869,29 @@ (define-public go-github-com-percent
|
||||||
"Package percent escapes strings using percent-encoding.")
|
"Package percent escapes strings using percent-encoding.")
|
||||||
(home-page "https://github.com/mtibben/percent")
|
(home-page "https://github.com/mtibben/percent")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public go-github-com-dvsekhvalnov-jose2go
|
||||||
|
(package
|
||||||
|
(name "go-github-com-dvsekhvalnov-jose2go")
|
||||||
|
(version "1.5.0")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/dvsekhvalnov/jose2go")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1pzfmv2dxb3m455bi1ks4q3i0dcw1sazxk8k96wrgpkwgglyxj3n"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(native-inputs
|
||||||
|
(list go-gopkg-in-check-v1))
|
||||||
|
(arguments
|
||||||
|
'(#:import-path "github.com/dvsekhvalnov/jose2go"
|
||||||
|
#:phases %standard-phases))
|
||||||
|
(synopsis "Go implementation of Javascript Object Signing and Encryption spec")
|
||||||
|
(description
|
||||||
|
"This package provides a Go library for generating, decoding, and
|
||||||
|
encrypting JSON Web Tokens (JWT). It relies only on the standard library.")
|
||||||
|
(home-page "https://github.com/dvsekhvalnov/jose2go")
|
||||||
|
(license license:expat)))
|
||||||
|
|
Loading…
Reference in a new issue