gnu: go-go-etcd-io-bbolt: Update to 1.3.11.

* gnu/packages/golang-xyz.scm (go-go-etcd-io-bbolt): Update to 1.3.11.
[native-inputs]: Add go-github-com-stretchr-testify, go-go-etcd-io-gofail, and
go-golang-org-x-sync.

Change-Id: I8bad82ce8006360cfa3cc509ccdff02e06f703d3
This commit is contained in:
Sharlatan Hellseher 2024-08-26 23:50:21 +01:00
parent 61656d3f61
commit 099fb61112
No known key found for this signature in database
GPG Key ID: 76D727BFF62CD2B5

View File

@ -6397,7 +6397,7 @@ Go host programs.")
(define-public go-go-etcd-io-bbolt
(package
(name "go-go-etcd-io-bbolt")
(version "1.3.6")
(version "1.3.11")
(source
(origin
(method git-fetch)
@ -6406,12 +6406,17 @@ Go host programs.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0pj5245d417za41j6p09fmkbv05797vykr1bi9a6rnwddh1dbs8d"))))
(base32 "16s2l1yjn55rgybc9k8kh88zg7z8igm10y1xmx2qx1a147k64d31"))))
(build-system go-build-system)
(arguments
`(#:import-path "go.etcd.io/bbolt"
(list
;; Extending the test timeout to 30 minutes still times out on aarch64.
#:tests? ,(not target-arm?)))
#:tests? (not target-arm?)
#:import-path "go.etcd.io/bbolt"))
(native-inputs
(list go-github-com-stretchr-testify
go-go-etcd-io-gofail
go-golang-org-x-sync))
(propagated-inputs
(list go-golang-org-x-sys))
(home-page "https://go.etcd.io/bbolt")