gnu: Add go-github-com-remyoudompheng-bigfft.

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

Change-Id: I659183495f68b7b29708020ff11c837e121c34ad
This commit is contained in:
Sharlatan Hellseher 2024-12-18 02:57:09 +00:00
parent 15cbecf435
commit 84f2a17915
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -144,6 +144,30 @@ and GCCs decimal extension.")
"This package provides a statistical library for Golang.")
(license license:expat)))
(define-public go-github-com-remyoudompheng-bigfft
(package
(name "go-github-com-remyoudompheng-bigfft")
(version "0.0.0-20230129092748-24d4a6f8daec")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/remyoudompheng/bigfft")
(commit (go-version->git-ref version))))
(file-name (git-file-name name version))
(sha256
(base32 "0qxfda0jq70ank99zlgfz7iig2jpicbbxnpr7xcf1v9p474ak2dx"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/remyoudompheng/bigfft"))
(home-page "https://github.com/remyoudompheng/bigfft")
(synopsis "Big integer multiplication library for using Fast Fourier transform")
(description
"Package bigfft implements multiplication of @code{big.Int} using
FFT (Schonhage-Strassen method for multiplying integers).")
(license license:bsd-3)))
(define-public go-github-com-shopspring-decimal
(package
(name "go-github-com-shopspring-decimal")