diff options
author | Sharlatan Hellseher <[email protected]> | 2024-12-12 13:56:39 +0000 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2025-01-21 23:41:53 +0000 |
commit | cddd6bb20c943065f01e53a77fbb6f480ebd27e6 (patch) | |
tree | fac29ce37d0313d6eb7b4c6a40e01083ec8d7052 /gnu/packages/golang-maths.scm | |
parent | 1b7aa9e12007c388bbc1e686cddd5ae2e90335e0 (diff) |
gnu: Add go-github-com-aclements-go-moremath.
* gnu/packages/golang-maths.scm (go-github-com-aclements-go-moremath): New variable.
Change-Id: I8a291cba373d60710b2dc4c8f242d3a80c25f512
Diffstat (limited to 'gnu/packages/golang-maths.scm')
-rw-r--r-- | gnu/packages/golang-maths.scm | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/gnu/packages/golang-maths.scm b/gnu/packages/golang-maths.scm index 02211bca7d..999dee0a52 100644 --- a/gnu/packages/golang-maths.scm +++ b/gnu/packages/golang-maths.scm @@ -36,6 +36,38 @@ ;;; Libraries: ;;; +(define-public go-github-com-aclements-go-moremath + (package + (name "go-github-com-aclements-go-moremath") + (version "0.0.0-20241023150245-c8bbc672ef66") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aclements/go-moremath") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01c9fkjs6gx7z6qkzy9qld7q3jhi9vgqhk8ymqck3ccmhg9bh1nq")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/aclements/go-moremath" + #:phases + #~(modify-phases %standard-phases + ;; No Go files in project root. + (delete 'build)))) + (propagated-inputs + (list go-gonum-org-v1-gonum)) + (home-page "https://github.com/aclements/go-moremath") + (synopsis "Assortment of more specialized math routines for Golang") + (description + "These packages provide more specialized math routines than are available +in the standard Go @code{math} package. go-moremath currently focuses on +statistical routines, with particular focus on high-quality implementations +and APIs for non-parametric methods.") + (license license:bsd-3))) + (define-public go-github-com-montanaflynn-stats (package (name "go-github-com-montanaflynn-stats") |