mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add go-github-com-jphastings-jwker.
* gnu/packages/golang-crypto.scm (go-github-com-jphastings-jwker, go-jwker): New variables. Change-Id: Iffc746524f2cd4461ae7f204cb8c82136b63d21d Co-authored-by: Sharlatan Hellseher <sharlatanus@gmail.com> Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
3a91693531
commit
5c9572a5e6
1 changed files with 42 additions and 0 deletions
|
@ -24,6 +24,8 @@
|
||||||
;;; Copyright © 2024 Troy Figiel <troy@troyfigiel.com>
|
;;; Copyright © 2024 Troy Figiel <troy@troyfigiel.com>
|
||||||
;;; Copyright © 2024 Jean Simard <woshilapin@tuziwo.info>
|
;;; Copyright © 2024 Jean Simard <woshilapin@tuziwo.info>
|
||||||
;;; Copyright © 2024 Superfly Johnson <superfly.johnson@yahoo.com>
|
;;; Copyright © 2024 Superfly Johnson <superfly.johnson@yahoo.com>
|
||||||
|
;;; Copyright © 2025 Roman Scherer <roman@burningswell.com>
|
||||||
|
;;; Copyright © 2025 Sharlatan Hellseher <sharlatanus@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -1259,6 +1261,33 @@ Stealing encryption and decryption methods.")
|
||||||
"A Golang library to verify Minisign signatures.")
|
"A Golang library to verify Minisign signatures.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public go-github-com-jphastings-jwker
|
||||||
|
(package
|
||||||
|
(name "go-github-com-jphastings-jwker")
|
||||||
|
(version "0.2.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/jphastings/jwker")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0nb487c2cfazxwqghq5a8iz8gyi0hhajc39c260f0n6d3ib1798g"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:import-path "github.com/jphastings/jwker"))
|
||||||
|
(native-inputs
|
||||||
|
(list go-github-com-stretchr-testify))
|
||||||
|
(home-page "https://github.com/jphastings/jwker")
|
||||||
|
(synopsis "PEM -> JWK conversion tool")
|
||||||
|
(description
|
||||||
|
"This package implements a functionality to convert keys between the
|
||||||
|
@acronym{PEM, Privacy-Enhanced Mail} and @acronym{JWK, JSON Web Key} file
|
||||||
|
formats.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public go-github-com-jzelinskie-whirlpool
|
(define-public go-github-com-jzelinskie-whirlpool
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-jzelinskie-whirlpool")
|
(name "go-github-com-jzelinskie-whirlpool")
|
||||||
|
@ -2565,6 +2594,19 @@ Go.")
|
||||||
#:unpack-path "filippo.io/age"
|
#:unpack-path "filippo.io/age"
|
||||||
#:install-source? #f))))
|
#:install-source? #f))))
|
||||||
|
|
||||||
|
(define-public go-jwker
|
||||||
|
(package/inherit go-github-com-jphastings-jwker
|
||||||
|
(name "go-jwker")
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:tests? #f
|
||||||
|
#:install-source? #f
|
||||||
|
#:build-flags
|
||||||
|
#~(list (string-append "-ldflags=-X main.version="
|
||||||
|
#$(package-version this-package)))
|
||||||
|
#:unpack-path "github.com/jphastings/jwker"
|
||||||
|
#:import-path "github.com/jphastings/jwker/cmd/jwker"))))
|
||||||
|
|
||||||
(define-public go-keyring
|
(define-public go-keyring
|
||||||
(package
|
(package
|
||||||
(inherit go-github-com-99designs-keyring)
|
(inherit go-github-com-99designs-keyring)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue