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>
This commit is contained in:
IliaLuetin 2025-10-27 14:25:00 +01:00 committed by Sharlatan Hellseher
parent f916dddfb4
commit 2c7fe6b39e
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -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")