guix_mirror_bot pushed a commit to branch astro-updates in repository guix.
commit e686b028ed4d44de0a10b26673d0d91bef2d56c1 Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Thu Jun 19 11:22:06 2025 +0100 gnu: Add go-codeberg-org-astronexus-brahe. * gnu/packages/golang-maths.scm (go-codeberg-org-astronexus-brahe): New variable. Change-Id: I418ea97bf8bd35c2beb27079d83a4e0344796764 --- gnu/packages/golang-maths.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/golang-maths.scm b/gnu/packages/golang-maths.scm index f8aa245b0b..a37fd37a75 100644 --- a/gnu/packages/golang-maths.scm +++ b/gnu/packages/golang-maths.scm @@ -37,6 +37,35 @@ ;;; Libraries: ;;; +(define-public go-codeberg-org-astronexus-brahe + (package + (name "go-codeberg-org-astronexus-brahe") + (version "0.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://codeberg.org/astronexus/brahe.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1602xfla22rqhd6b98cbwklpcj7dmzjxywcnq3fajrsgx0ysf8p6")))) + (build-system go-build-system) + (arguments + (list + #:import-path "codeberg.org/astronexus/brahe")) + (propagated-inputs (list go-gonum-org-v1-gonum)) + (home-page "https://codeberg.org/astronexus/brahe") + (synopsis "Read and use data from the Augmented Tycho-HYG (AT-HYG) star catalog") + (description + "Package brahe defines core variable types and basic utility functions +for astronomy programs using the AT-HYG (Augmented Tycho-HYG) catalog. The +base file (brahe.go) defines the most widely used types in these utility +functions. @code{brahe} uses the +@code{https://pkg.go.dev/gonum.org/v1/gonum/floats, Gonum floating point +library} for vector math.") + (license license:expat))) + (define-public go-github-com-aclements-go-moremath (package (name "go-github-com-aclements-go-moremath")