_            _    _        _         _
      /\ \         /\ \ /\ \     /\_\      / /\
      \_\ \       /  \ \\ \ \   / / /     / /  \
      /\__ \     / /\ \ \\ \ \_/ / /     / / /\ \__
     / /_ \ \   / / /\ \ \\ \___/ /     / / /\ \___\
    / / /\ \ \ / / /  \ \_\\ \ \_/      \ \ \ \/___/
   / / /  \/_// / /   / / / \ \ \        \ \ \
  / / /      / / /   / / /   \ \ \   _    \ \ \
 / / /      / / /___/ / /     \ \ \ /_/\__/ / /
/_/ /      / / /____\/ /       \ \_\\ \/___/ /
\_\/       \/_________/         \/_/ \_____\/

Enter the query into the form above. You can look for specific version of a package by using @ symbol like this: gcc@10.

API method:

GET /api/packages?search=hello&page=1&limit=20

where search is your query, page is a page number and limit is a number of items on a single page. Pagination information (such as a number of pages and etc) is returned in response headers.

If you'd like to join our channel search send a patch to ~whereiseveryone/toys@lists.sr.ht adding your channel as an entry in channels.scm.


go-github-com-altree-bigfloat 0.2.0
Channel: guix
Location: gnu/packages/golang-maths.scm (gnu packages golang-maths)
Home page: https://github.com/ALTree/bigfloat
Licenses: Expat
Build system: go
Synopsis: Arbitrary-precision operations for Golang's @code{big.Float}
Description:

This package provides additional operations for the standard library's big.Float type, including natural logarithm, exponentiation, and power functions for arbitrary-precision floating-point numbers.

go-gonum-org-v1-gonum 0.16.0
Propagated dependencies: go-github-com-goccmack-gocc@1.0.2 go-github-com-google-go-cmp@0.7.0 go-golang-org-x-exp@0.0.0-20250911091902-df9299821621 go-golang-org-x-tools@0.44.0
Channel: guix
Location: gnu/packages/golang-maths.scm (gnu packages golang-maths)
Home page: https://www.gonum.org/
Licenses: Expat
Build system: go
Synopsis: Set of numeric libraries for Golang
Description:

Gonum is a set of packages designed to make writing numerical and scientific algorithms productive, performant, and scalable. It provides libraries for matrices and linear algebra; statistics, probability distributions, and sampling; tools for function differentiation,integration, and optimization; network creation and analysis

go-github-com-johncgriffin-overflow 0.0.0-20211019200055-46fa312c352c
Channel: guix
Location: gnu/packages/golang-maths.scm (gnu packages golang-maths)
Home page: https://github.com/JohnCGriffin/overflow
Licenses: Expat
Build system: go
Synopsis: Check for int/int64/int32 arithmetic overflow in Golang
Description:

This package offers overflow-checked integer arithmetic operations for int,int32, and int64. Each of the operations returns a result,bool combination. This was prompted by the need to know when to flow into higher precision types from the math.big library.

go-github-com-cockroachdb-apd-v3 3.2.1
Propagated dependencies: go-github-com-pkg-errors@0.9.1
Channel: guix
Location: gnu/packages/golang-maths.scm (gnu packages golang-maths)
Home page: https://github.com/cockroachdb/apd
Licenses: ASL 2.0
Build system: go
Synopsis: Arbitrary-precision decimals for Golang
Description:

This package implements much of the decimal specification from the General Decimal Arithmetic description. This is the same specification implemented by Python’s decimal module and GCC’s decimal extension.

go-github-com-aclements-go-moremath 0.0.0-20241023150245-c8bbc672ef66
Propagated dependencies: go-gonum-org-v1-gonum@0.16.0
Channel: guix
Location: gnu/packages/golang-maths.scm (gnu packages golang-maths)
Home page: https://github.com/aclements/go-moremath
Licenses: Modified BSD
Build system: go
Synopsis: Assortment of more specialized math routines for Golang
Description:

These packages provide more specialized math routines than are available in the standard Go math package. go-moremath currently focuses on statistical routines, with particular focus on high-quality implementations and APIs for non-parametric methods.

go-github-com-google-go-units 0.0.0-20260624172601-62e5ee3ae5ce
Channel: guix
Location: gnu/packages/golang-maths.scm (gnu packages golang-maths)
Home page: https://github.com/google/go-units
Licenses: ASL 2.0
Build system: go
Synopsis: Go library for physical unit conversions
Description:

This Go library represents physical units like length, area, speed, and temperature as typed floating point numbers. Methods to convert between metric and US customary units of measurement are provided on each type. Additional units can be created by multiplying by const values and variables can be converted by casting.

go-github-com-bmkessler-fastdiv 0.0.0-20190227075523-41d5178f2044
Channel: guix
Location: gnu/packages/golang-maths.scm (gnu packages golang-maths)
Home page: https://github.com/bmkessler/fastdiv
Licenses: Expat
Build system: go
Synopsis: Runtime divisibility check in Golang
Description:

Package fastdiv implements fast division, modulus and divisibility checks for divisors known only at runtime based on paper: Faster Remainder by Direct Computation: Applications to Compilers and Software Libraries.

go-github-com-robinus2-golang-moving-average 1.0.0
Channel: guix
Location: gnu/packages/golang-maths.scm (gnu packages golang-maths)
Home page: https://github.com/RobinUS2/golang-moving-average
Licenses: ASL 2.0
Build system: go
Synopsis: Moving average implementation for Go
Description:

This package provides a moving average implementation for Go.

go-github-com-google-go-intervals 0.0.2
Channel: guix
Location: gnu/packages/golang-maths.scm (gnu packages golang-maths)
Home page: https://github.com/google/go-intervals
Licenses: ASL 2.0
Build system: go
Synopsis: Operations on 1-dimensional intervals for Golang
Description:

This package provides utilities for performing set operations on 1-dimensional intervals, such as time ranges.

go-github-com-kshedden-dstream 0.0.0-20190512025041-c4c410631beb
Propagated dependencies: go-github-com-golang-snappy@0.0.4 go-gonum-org-v1-gonum@0.16.0
Channel: guix
Location: gnu/packages/golang-maths.scm (gnu packages golang-maths)
Home page: https://github.com/kshedden/dstream
Licenses: Modified BSD
Build system: go
Synopsis: Process data streams in Golang
Description:

Dstream is a package for manipulating streams of typed, multivariate data in Go. A Dstream is a dataframe-like container that holds a rectangular array of data in which the columns are variables and the rows are cases or observations.

Dstream is designed to handle large datasets, where it is not possible to load all data for all variables into memory at once. To achieve this, Dstream utilizes a chunked, column-based storage format. A chunk contains the data for a contiguous block of rows. The data are stored by variable (column-wise) in typed Go slices. Only one chunk of the Dstream is held in memory at one time.

go-modernc-org-mathutil 1.7.1
Propagated dependencies: go-github-com-remyoudompheng-bigfft@0.0.0-20230129092748-24d4a6f8daec
Channel: guix
Location: gnu/packages/golang-maths.scm (gnu packages golang-maths)
Home page: https://modernc.org/mathutil
Licenses: Modified BSD
Build system: go
Synopsis: Utilities supplemental to the Go standard @code{rand} and @code{math} packages
Description:

Package mathutil provides utilities supplementing the standard math and math/rand packages.

go-github-com-aclements-go-gg 0.0.0-20170323211221-abd1f791f5ee
Propagated dependencies: go-github-com-aclements-go-moremath@0.0.0-20241023150245-c8bbc672ef66
Channel: guix
Location: gnu/packages/golang-maths.scm (gnu packages golang-maths)
Home page: https://github.com/aclements/go-gg
Licenses: Modified BSD
Build system: go
Synopsis: Plotting package for Golang
Description:

gg is a plotting package for Go inspired by the Grammar of Graphics.

go-github-com-remyoudompheng-bigfft 0.0.0-20230129092748-24d4a6f8daec
Channel: guix
Location: gnu/packages/golang-maths.scm (gnu packages golang-maths)
Home page: https://github.com/remyoudompheng/bigfft
Licenses: Modified BSD
Build system: go
Synopsis: Big integer multiplication library for using Fast Fourier transform
Description:

Package bigfft implements multiplication of big.Int using FFT (Schonhage-Strassen method for multiplying integers).

go-code-gitea-io-actions-proto-go-runner 0.4.1
Propagated dependencies: go-google-golang-org-protobuf@1.36.11 go-connectrpc-com-connect@1.18.1
Channel: guix
Location: gnu/packages/golang-vcs.scm (gnu packages golang-vcs)
Home page: https://code.gitea.io/actions-proto-go
Licenses: Expat
Build system: go
Synopsis: Action runner for Gitea
Description:

This package provides an Action runner for the Gitea forge.

go-github-com-go-git-gcfg-v2 2.0.2
Propagated dependencies: go-github-com-pkg-errors@0.9.1 go-gopkg-in-warnings-v0@0.1.2
Channel: guix
Location: gnu/packages/golang-vcs.scm (gnu packages golang-vcs)
Home page: https://github.com/go-git/gcfg
Licenses: Modified BSD
Build system: go
Synopsis: Gcfg reads INI-style configuration files into Go structs
Description:

Gcfg reads INI-style configuration files into Go structs.

git-sync 4.4.3
Channel: guix
Location: gnu/packages/golang-vcs.scm (gnu packages golang-vcs)
Home page: https://github.com/kubernetes/git-sync
Licenses: ASL 2.0
Build system: go
Synopsis: Keep repository in sync with the upstream
Description:

git-sync is a simple command that pulls a git repository into a local directory. It is a perfect "sidecar" container in Kubernetes - it can periodically pull files down from a repository so that an application can consume them.

go-github-com-jiangxin-goconfig 1.1.2
Propagated dependencies: go-github-com-golang-groupcache@0.0.0-20210331224755-41bb18bfe9da go-github-com-spf13-pflag@1.0.10
Channel: guix
Location: gnu/packages/golang-vcs.scm (gnu packages golang-vcs)
Home page: https://github.com/jiangxin/goconfig
Licenses: GPL 2+
Build system: go
Synopsis: Go parsing library for .gitconfig files
Description:

goconfig is a Go library for parsing configuration files that have the same syntax as .gitconfig files. It understands multiple values configuration, and can parse configurations include via include.path directives. includeIf.*.path directives are not supported yet.

go-github-com-nektos-act 1.24.1
Propagated dependencies: go-dario-cat-mergo@1.0.2 go-github-com-adrg-xdg@0.4.0 go-github-com-alecaivazis-survey-v2@2.3.7 go-github-com-andreaskoch-go-fswatch@1.0.0 go-github-com-creack-pty@1.1.24 go-github-com-distribution-reference@0.6.0 go-github-com-docker-cli@25.0.7 go-github-com-docker-distribution@2.8.3 go-github-com-docker-docker@25.0.7 go-github-com-docker-go-connections@0.5.0 go-github-com-go-git-go-git-v5@5.13.1 go-github-com-gobwas-glob@0.2.3 go-github-com-golang-jwt-jwt-v5@5.3.1 go-github-com-imdario-mergo@1.0.2 go-github-com-joho-godotenv@1.5.1 go-github-com-julienschmidt-httprouter@1.3.0 go-github-com-kballard-go-shellquote@0.0.0-1.95032a8 go-github-com-masterminds-semver@1.5.0 go-github-com-mattn-go-isatty@0.0.22 go-github-com-moby-patternmatcher@0.6.0 go-github-com-opencontainers-image-spec@1.1.0 go-github-com-opencontainers-selinux@1.11.1 go-github-com-pkg-errors@0.9.1 go-github-com-rhysd-actionlint@1.7.7 go-github-com-sabhiram-go-gitignore@0.0.0-20210923224102-525f6e181f06 go-github-com-sirupsen-logrus@1.9.3 go-github-com-spf13-cobra@1.10.2 go-github-com-spf13-pflag@1.0.10 go-github-com-timshannon-bolthold@0.0.0-20240314194003-30aac6950928 go-go-etcd-io-bbolt@1.4.3 go-golang-org-x-term@0.42.0 go-google-golang-org-protobuf@1.36.11 go-gopkg-in-yaml-v3@3.0.1
Channel: guix
Location: gnu/packages/golang-vcs.scm (gnu packages golang-vcs)
Home page: https://github.com/nektos/act
Licenses: Expat
Build system: go
Synopsis: Run GitHub Actions locally
Description:

Helper tool to run GitHub Actions locally.

f3-cli 3.11.39
Channel: guix
Location: gnu/packages/golang-vcs.scm (gnu packages golang-vcs)
Home page: https://code.forgejo.org/f3/gof3
Licenses: Expat
Build system: go
Synopsis: Friendly Forge Format (F3)
Description:

As a command or as a library, GoF3 provides a single operation: mirroring. The origin and destination are designated by the URL of a forge and a path to the resource.

go-code-forgejo-org-f3-gof3-v3 3.11.39
Propagated dependencies: go-github-com-42wim-httpsig@1.2.3 go-github-com-aio-arch-graphlib@1.0.2 go-github-com-hashicorp-go-version@1.7.0 go-github-com-santhosh-tekuri-jsonschema-v6@6.0.2 go-gitlab-com-gitlab-org-api-client-go@0.116.0 go-golang-org-x-crypto@0.50.0
Channel: guix
Location: gnu/packages/golang-vcs.scm (gnu packages golang-vcs)
Home page: https://code.forgejo.org/f3/gof3
Licenses: Expat
Build system: go
Synopsis: Friendly Forge Format (F3)
Description:

As a command or as a library, GoF3 provides a single operation: mirroring. The origin and destination are designated by the URL of a forge and a path to the resource.

go-code-gitea-io-actions-proto-go-ping 0.4.1
Propagated dependencies: go-google-golang-org-protobuf@1.36.11 go-connectrpc-com-connect@1.18.1
Channel: guix
Location: gnu/packages/golang-vcs.scm (gnu packages golang-vcs)
Home page: https://code.gitea.io/actions-proto-go
Licenses: Expat
Build system: go
Synopsis: Helper for the Gitea Action runner
Description:

This package provides a helper for the Gitea Action runer.

go-gitlab-com-digitalxero-go-conventional-commit 1.0.7
Channel: guix
Location: gnu/packages/golang-vcs.scm (gnu packages golang-vcs)
Home page: https://gitlab.com/digitalxero/go-conventional-commit
Licenses: Expat
Build system: go
Synopsis: Go parser for conventional commits
Description:

This package provides a Go parser for conventional-commit messages https://www.conventionalcommits.org/.

go-github-com-git-lfs-pktline 0.0.0-1.ca444d5
Channel: guix
Location: gnu/packages/golang-vcs.scm (gnu packages golang-vcs)
Home page: https://github.com/git-lfs/pktline
Licenses: Expat
Build system: go
Synopsis: Git pkt-line Go toolkit
Description:

This package is a Go language toolkit for reading and writing files using the Git pkt-line format used in various Git operations.

Total packages: 72465