diff options
author | Sharlatan Hellseher <[email protected]> | 2024-12-18 03:16:31 +0000 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2025-01-21 23:42:05 +0000 |
commit | 6cb4c1e7a9ed0bf4ad41e7e47acb4b5d2854dfda (patch) | |
tree | 4cc1ceafbb76a187a5a3e27ace4bb3ef0595d373 /gnu/packages/golang-maths.scm | |
parent | 2ca21f101ecc34d5de5def9efc69443fd0148611 (diff) |
gnu: Add go-lukechampine-com-uint128.
* gnu/packages/golang-maths.scm (go-lukechampine-com-uint128): New variable.
Change-Id: I8cacd39c843b3ea9dd4e324874240b882b32064e
Diffstat (limited to 'gnu/packages/golang-maths.scm')
-rw-r--r-- | gnu/packages/golang-maths.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/golang-maths.scm b/gnu/packages/golang-maths.scm index dc855b0a0c..957e625cdf 100644 --- a/gnu/packages/golang-maths.scm +++ b/gnu/packages/golang-maths.scm @@ -278,6 +278,33 @@ distributions, and sampling; tools for function differentiation,integration, and optimization; network creation and analysis") (license license:expat))) +(define-public go-lukechampine-com-uint128 + (package + (name "go-lukechampine-com-uint128") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/lukechampine/uint128") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yy6lbprrsl9gscxn4194kr5sfvgi9cgvjdxn2141k36ab3nz8ip")))) + (build-system go-build-system) + (arguments + (list + #:import-path "lukechampine.com/uint128")) + (home-page "https://github.com/lukechampine/uint128") + (synopsis "Uint128 for Golang") + (description + "This package provides a high-performance @code{Uint128} type that +supports standard arithmetic operations. Unlike @code{math/big}, operations +on @code{Uint128} values always produce new values instead of modifying a +pointer receiver. A @@code{Uint128} value is therefore immutable, just like +@code{uint64} and friends.") + (license license:expat))) + (define-public go-modernc-org-mathutil (package (name "go-modernc-org-mathutil") |