gnu: Add go-gopkg-in-inf-v0.

* gnu/packages/golang-xyz.scm (go-gopkg-in-inf-v0): New variable.

Change-Id: I1c22496d1447500760a555baa4de444e674205da
This commit is contained in:
Sharlatan Hellseher 2025-09-07 13:13:51 +01:00
parent f8e1b3c28f
commit b73498acb3
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -22958,6 +22958,32 @@ machine readable. It is modeled after the Go standard library's @code{io} and
go-github-com-mattn-go-colorable go-github-com-mattn-go-colorable
go-golang-org-x-term)))) go-golang-org-x-term))))
(define-public go-gopkg-in-inf-v0
(package
(name "go-gopkg-in-inf-v0")
(version "0.9.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/go-inf/inf")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "00k5iqjcp371fllqxncv7jkf80hn1zww92zm78cclbcn4ybigkng"))))
(build-system go-build-system)
(arguments
(list
#:import-path "gopkg.in/inf.v0"
;; Tests are not copatiblw with Go 1.24+.
#:test-flags #~(list "-vet=off")))
(home-page "https://github.com/go-inf/inf")
(synopsis "Infinite precision decimal arithmetic in Golang")
(description
"This package (type @code{inf.Dec}) implements a \"infinite-precision\"
decimal arithmetic.")
(license license:expat)))
(define-public go-gopkg-in-ini-v1 (define-public go-gopkg-in-ini-v1
(package (package
(name "go-gopkg-in-ini-v1") (name "go-gopkg-in-ini-v1")