guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit 33a540992f2191b09cc8b444a5eb67d03f5b3991
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Feb 10 22:38:40 2026 +0000
gnu: go-filippo-io-age: Update to 1.3.1.
* gnu/packages/golang-crypto.scm (go-filippo-io-age): Update to 1.3.1.
[native-inputs]: Remove go-github-com-rogpeppe-go-internal; add
go-github-com-rogpeppe-go-internal-1.14.
[propagated-inputs]: Add go-filippo-io-hpke and go-filippo-io-nistec.
Change-Id: I255a3f5835c93681b25edfaf8bc0f2ea58905c1f
---
gnu/packages/golang-crypto.scm | 18 ++++++++++--------
1 file changed, 10 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm
index dc17e4eb90..b171794e03 100644
--- a/gnu/packages/golang-crypto.scm
+++ b/gnu/packages/golang-crypto.scm
@@ -135,16 +135,16 @@ can be ignored.")
(define-public go-filippo-io-age
(package
(name "go-filippo-io-age")
- (version "1.2.1")
+ (version "1.3.1")
(source
(origin
(method git-fetch)
(uri (git-reference
- (url "https://github.com/FiloSottile/age")
- (commit (string-append "v" version))))
+ (url "https://github.com/FiloSottile/age")
+ (commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "183iqzmdwk4b35vxrdg2gdzd4277yr5bgbgl9brqv3w1dap5v4pm"))
+ (base32 "1h4k15bdbx5dx1397xvhx2h7b5akvbzksh80j3p46mqq6kgymks2"))
(modules '((guix build utils)))
(snippet
#~(begin
@@ -166,12 +166,14 @@ can be ignored.")
#:import-path "filippo.io/age"))
(native-inputs
(list go-c2sp-org-cctv-age
- go-github-com-rogpeppe-go-internal))
+ go-github-com-rogpeppe-go-internal-1.14))
(propagated-inputs
- (list go-golang-org-x-sys
- go-golang-org-x-term
+ (list go-filippo-io-edwards25519
+ go-filippo-io-hpke
+ go-filippo-io-nistec
go-golang-org-x-crypto
- go-filippo-io-edwards25519))
+ go-golang-org-x-sys
+ go-golang-org-x-term))
(home-page "https://filippo.io/age")
(synopsis "Secure file encryption tool, format, and Go library")
(description