~ruther/guix-local

2c7fe6b39e90db454c649ef5220cb2bb0e8af58a — IliaLuetin 6 months ago f916ddd
gnu: Add go-github-com-altree-bigfloat.

* gnu/packages/golang-maths.scm (go-github-com-altree-bigfloat): New variable.

Change-Id: Ic0da1aae7ea6bce376b554d5ff981b78fea677d6
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
1 files changed, 26 insertions(+), 0 deletions(-)

M gnu/packages/golang-maths.scm
M gnu/packages/golang-maths.scm => gnu/packages/golang-maths.scm +26 -0
@@ 1,6 1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2024 Rodion Goritskov <rodion.goritskov@gmail.com>
;;; Copyright © 2024 Sharlatan Hellseher <sharlatanus@gmail.com>
;;; Copyright © 2025 IliaLuetin <antonstimmer@gmx.de>
;;;
;;; This file is part of GNU Guix.
;;;


@@ 39,6 40,31 @@
;;; Libraries:
;;;

(define-public go-github-com-altree-bigfloat
  (package
    (name "go-github-com-altree-bigfloat")
    (version "0.2.0")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
              (url "https://github.com/ALTree/bigfloat")
              (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "1jvqg5w4azwqv0ranir6vhlh6403pn6043jqbwsldan4vj6n5xmh"))))
    (build-system go-build-system)
    (arguments
     (list
      #:import-path "github.com/ALTree/bigfloat"))
    (home-page "https://github.com/ALTree/bigfloat")
    (synopsis "Arbitrary-precision operations for Golang's @code{big.Float}")
    (description
     "This package provides additional operations for the standard library's
@code{big.Float} type, including natural logarithm, exponentiation, and power
functions for arbitrary-precision floating-point numbers.")
    (license license:expat)))

(define-public go-github-com-aclements-go-gg
  (package
    (name "go-github-com-aclements-go-gg")