diff options
| author | Roman Scherer <roman@burningswell.com> | 2025-12-24 17:15:37 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-04-06 21:32:43 +0100 |
| commit | 5c3a7b22069b4aacb2da845072768317f3a5cbe5 (patch) | |
| tree | d0202fa6c27dae3ddaf2c625a2d0605bf1707ec5 /gnu | |
| parent | a3042cb349f3ededafd401f871aa7c09e2975dac (diff) | |
gnu: Add go-github-com-digitorus-pkcs7.
* gnu/packages/golang-crypto.scm (go-github-com-digitorus-pkcs7): New variable.
Relates-to: https://codeberg.org/guix/guix/issues/5190
Change-Id: Idc459f1cfed08fdb063e4e432a2e93c0bf8aa349
Reviewed-by: Johannes Christ <jc@jchri.st>
Modified-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/golang-crypto.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm index 4b93c11ba82..beae5e780a5 100644 --- a/gnu/packages/golang-crypto.scm +++ b/gnu/packages/golang-crypto.scm @@ -1229,6 +1229,36 @@ MetroHash}, a high quality, high performance hash algorithm.") "This package provides a hashing function.") (license license:expat))) +(define-public go-github-com-digitorus-pkcs7 + (package + (name "go-github-com-digitorus-pkcs7") + (version "0.0.0-20250730155240-ffadbf3f398c") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/digitorus/pkcs7") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0snamp6fbg5vir0lsw5wzvyagrdd832lw6k7cnvcahcgp8l084zc")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/digitorus/pkcs7")) + (native-inputs + (list openssl)) + (home-page "https://github.com/digitorus/pkcs7") + (synopsis "PKCS#7 implementation for Go") + (description + "This package implements parsing and generation of some +PKCS#7/Cryptographic Message +Syntax (@url{https://www.rfc-editor.org/rfc/rfc2315}, +@url{https://www.rfc-editor.org/rfc/rfc5652, RFC 2315}, RFC 5652) structures +for Go applications. It's an alternative fork of deprecated +@url{https://github.com/mozilla-services/pkcs7}.") + (license license:expat))) + (define-public go-github-com-dvsekhvalnov-jose2go (package (name "go-github-com-dvsekhvalnov-jose2go") |
