mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 03:55:08 -06:00
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:
parent
f916dddfb4
commit
2c7fe6b39e
1 changed files with 26 additions and 0 deletions
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue