guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit 9599ca5e1201a79f82997e262badde91b8c39634
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 3af33f9f72..bac6a9cc18 100644
--- a/gnu/packages/golang-crypto.scm
+++ b/gnu/packages/golang-crypto.scm
@@ -134,16 +134,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
@@ -165,12 +165,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