~ruther/guix-local

b73498acb3feef139e9abf5e3d2a425d0afab73b — Sharlatan Hellseher 6 months ago f8e1b3c
gnu: Add go-gopkg-in-inf-v0.

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

Change-Id: I1c22496d1447500760a555baa4de444e674205da
1 files changed, 26 insertions(+), 0 deletions(-)

M gnu/packages/golang-xyz.scm
M gnu/packages/golang-xyz.scm => gnu/packages/golang-xyz.scm +26 -0
@@ 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-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
  (package
    (name "go-gopkg-in-ini-v1")