_            _    _        _         _
      /\ \         /\ \ /\ \     /\_\      / /\
      \_\ \       /  \ \\ \ \   / / /     / /  \
      /\__ \     / /\ \ \\ \ \_/ / /     / / /\ \__
     / /_ \ \   / / /\ \ \\ \___/ /     / / /\ \___\
    / / /\ \ \ / / /  \ \_\\ \ \_/      \ \ \ \/___/
   / / /  \/_// / /   / / / \ \ \        \ \ \
  / / /      / / /   / / /   \ \ \   _    \ \ \
 / / /      / / /___/ / /     \ \ \ /_/\__/ / /
/_/ /      / / /____\/ /       \ \_\\ \/___/ /
\_\/       \/_________/         \/_/ \_____\/
go-github-com-warpfork-go-fsx 0.4.0
Channel: guix
Location: gnu/packages/golang-xyz.scm (gnu packages golang-xyz)
Home page: https://github.com/warpfork/go-fsx
Licenses: Expat ASL 2.0 Modified BSD
Synopsis: Extended filesystem interface for Golang
Description:

This package, fsx, takes the style of the io/fs package, and extends it with more features:

  • fsx provides the ability to write files (using OpenFile, which is much like the os package feature you're already familiar with)

  • fsx provides the ability to create directories

  • fsx provides the ability to delete files and directories

  • fsx provides features for reading symlinks, and creating them

go-github-com-gizak-termui-v3 3.1.0
Propagated dependencies: go-github-com-mattn-go-runewidth@0.0.16 go-github-com-mitchellh-go-wordwrap@1.0.1 go-github-com-nsf-termbox-go@1.1.1
Channel: guix
Location: gnu/packages/golang-xyz.scm (gnu packages golang-xyz)
Home page: https://github.com/gizak/termui
Licenses: Expat
Synopsis: Terminal dashboard widget Go library
Description:

The termui Go library draws customizable dashboard widgets in a text terminal. It includes several common widgets: lists, trees, tables and tabs, but also more complex items such as (stacked) bar and pie charts, scatter plots, gauges, and even images and a canvas for drawing `high resolution' braille dots.

You can also easily create new custom widgets. Widgets can be coloured and styled and positioned absolutely or relatively. They respond to keyboard, mouse, and terminal resizing events.

go-github-com-saracen-fastzip 0.1.11
Propagated dependencies: go-github-com-klauspost-compress@1.17.11 go-github-com-saracen-zipextra@0.0.0-20220303013732-0187cb0159ea go-golang-org-x-sync@0.10.0 go-golang-org-x-sys@0.28.0
Channel: guix
Location: gnu/packages/golang-compression.scm (gnu packages golang-compression)
Home page: https://github.com/saracen/fastzip
Licenses: Expat
Synopsis: Zip archiver and extractor with a focus on speed
Description:

Fastzip is an opinionated Zip archiver and extractor with a focus on speed. Features:

  • archiving and extraction of files and directories can only occur within a specified directory

  • permissions, ownership (uid, gid on linux/unix) and modification times are preserved

  • buffers used for copying files are recycled to reduce allocations

  • files are archived and extracted concurrently

  • by default, github.com/klauspost/compress/flate library is used for compression and decompression

go-github-com-jackc-puddle-v2 2.2.2
Propagated dependencies: go-golang-org-x-sync@0.10.0
Channel: guix
Location: gnu/packages/golang-xyz.scm (gnu packages golang-xyz)
Home page: https://github.com/jackc/puddle
Licenses: Expat
Synopsis: Generic resource pool for Golang
Description:

Puddle is a tiny generic resource pool library hat uses the standard context library to signal cancellation of acquires. It is designed to contain the minimum functionality required for a resource pool. It can be used directly or it can be used as the base for a domain specific resource pool. For example, a database connection pool may use puddle internally and implement health checks and keep-alive behavior without needing to implement any concurrent code of its own.

go-github-com-hashicorp-yamux 0.1.2
Channel: guix
Location: gnu/packages/golang-web.scm (gnu packages golang-web)
Home page: https://github.com/hashicorp/yamux
Licenses: MPL 2.0
Synopsis: Golang connection multiplexing library
Description:

Yamux (Yet another Multiplexer) relies on an underlying connection to provide reliability and ordering, such as TCP or Unix domain sockets, and provides stream-oriented multiplexing. It is inspired by SPDY but is not interoperable with it.

Features:

  • streams can be opened by either client or server

  • useful for nat traversal

  • server-side push support

  • avoid starvation

  • back-pressure to prevent overwhelming a receiver

  • enables persistent connections over a load balancer

  • enables thousands of logical streams with low overhead

go-github-com-schollz-pake-v3 3.0.2
Propagated dependencies: go-github-com-tscholl2-siec@0.0.0-20210707234609-9bdfc483d499 go-github-com-stretchr-testify@1.10.0 go-github-com-davecgh-go-spew@1.1.1
Channel: guixrus
Location: guixrus/packages/common/go.scm (guixrus packages common go)
Home page: https://github.com/schollz/pake
Licenses: Expat
Synopsis: pake
Description:

This library will help you allow two parties to generate a mutual secret key by using a weak key that is known to both beforehand (e.g. via some other channel of communication). This is a simple API for an implementation of password-authenticated key exchange (PAKE). This protocol is derived from Dan Boneh and Victor Shoup's cryptography book (pg 789, "PAKE2 protocol). I decided to create this library so I could use PAKE in my file-transfer utility, croc.

go-github-com-zyedidia-poller 1.0.1
Channel: guixrus
Location: guixrus/packages/common/go.scm (guixrus packages common go)
Home page: https://github.com/zyedidia/poller
Licenses: FreeBSD
Synopsis: poller
Description:

Package poller is a file-descriptor multiplexer. It allows concurent Read and Write operations from and to multiple file-descriptors without allocating one OS thread for every blocked operation. It operates similarly to Go's netpoller (which multiplexes network connections) without requiring special support from the Go runtime. It can be used with tty devices, character devices, pipes, FIFOs, and any file-descriptor that is poll-able (can be used with select(2), epoll(7), etc.) In addition, package poller allows the user to set timeouts (deadlines) for read and write operations, and also allows for safe cancelation of blocked read and write operations; a Close from another go-routine safely cancels ongoing (blocked) read and write operations.

go-github-com-davecgh-go-spew 1.1.1
Channel: guix
Location: gnu/packages/golang-check.scm (gnu packages golang-check)
Home page: https://github.com/davecgh/go-spew
Licenses: ISC
Synopsis: Deep pretty printer for Go data structures to aid in debugging
Description:

Package spew implements a deep pretty printer for Go data structures to aid in debugging.

A quick overview of the additional features spew provides over the built-in printing facilities for Go data types are as follows:

  • Pointers are dereferenced and followed.

  • Circular data structures are detected and handled properly.

  • Custom Stringer/error interfaces are optionally invoked, including on unexported types.

  • Custom types which only implement the Stringer/error interfaces via a pointer receiver are optionally invoked when passing non-pointer variables.

  • Byte arrays and slices are dumped like the hexdump -C command which includes offsets, byte values in hex, and ASCII output (only when using Dump style).

go-github-com-zyedidia-poller 1.0.1
Channel: guix
Location: gnu/packages/golang-xyz.scm (gnu packages golang-xyz)
Home page: https://github.com/zyedidia/poller
Licenses: FreeBSD
Synopsis: File-descriptor multiplexer based on epoll(7)
Description:

Package poller is a file-descriptor multiplexer. It allows concurrent Read and Write operations from and to multiple file-descriptors without allocating one OS thread for every blocked operation. It operates similarly to Go's netpoller (which multiplexes network connections) without requiring special support from the Go runtime. It can be used with tty devices, character devices, pipes, FIFOs, and any file-descriptor that is poll-able, can be used with select(2), epoll(7), etc.

In addition, package poller allows the user to set timeouts (deadlines) for read and write operations, and also allows for safe cancellation of blocked read and write operations; a Close from another go-routine safely cancels ongoing (blocked) read and write operations.

It's an active fork of https://github.com/npat-efault/poller.

go-github-com-xtaci-kcp-go-v5 5.6.18
Propagated dependencies: go-github-com-klauspost-reedsolomon@1.12.4 go-github-com-pkg-errors@0.9.1 go-github-com-templexxx-xorsimd@0.4.3 go-github-com-tjfoc-gmsm@1.4.1 go-github-com-xtaci-lossyconn@0.0.0-20200209145036-adba10fffc37 go-golang-org-x-crypto@0.31.0 go-golang-org-x-net@0.33.0
Channel: guix
Location: gnu/packages/golang-web.scm (gnu packages golang-web)
Home page: https://github.com/xtaci/kcp-go
Licenses: Expat
Synopsis: Crypto-Secure Reliable-UDP Library with FEC
Description:

This package provides smooth, resilient, ordered, error-checked and anonymous delivery of streams over UDP packets. Features:

  • designed for latency-sensitive scenarios

  • cache-friendly and memory-optimized design

  • handles >5K concurrent connections on a single commodity server

  • compatible with net.Conn and net.Listener, serving as a drop-in replacement for net.TCPConn

  • Forward Error Correction support with Reed-Solomon Codes

  • packet-level encryption support with 3DES, AES, Blowfish, Cast5, PBKDF2, SM4, Salsa20, TEA, Twofish, and XTEA

  • only a fixed number of goroutines are created for the entire server application

  • compatible with skywind3000's C version with various improvements

go-github-com-coder-websocket 1.8.12
Channel: guix
Location: gnu/packages/golang-web.scm (gnu packages golang-web)
Home page: https://github.com/coder/websocket
Licenses: ISC
Synopsis: WebSocket library for Go
Description:

websocket is a minimal and idiomatic WebSocket library for Go.

Main features:

go-github-com-dgryski-trifles 0.0.0-20240922021506-5ecb8eeff266
Channel: guix
Location: gnu/packages/golang-xyz.scm (gnu packages golang-xyz)
Home page: https://github.com/dgryski/trifles
Licenses: Expat
Synopsis: Collection of Golang utility libraries and commands
Description:

This package provides a collection veriaty of utility libraries:

  • intset - compress a stream of integers

  • lz - lempel-ziv compression

  • threadtree - a threaded binary-tree

  • numerical - numerical integration and root finding

  • maze - maze generation stuff

  • hist - simple command-line histogramming tool

  • simhash - trivial simhash implementation

  • wscat - trivial websocket netcat

  • servedir - trivial http fileserver

  • rndtxt - generate random text strings

  • mpush - push to multiple notification services (pushbullet, nma, pushover)

  • superbat - batmanjs and go-restful playground

  • msgrpc - msgpack rpc python/go interop samples

  • quantile - testing different streaming quantile estimators

  • wtflog - logging package with some renamed log levels

  • qrshow - display QR codes in a terminal

  • nlz - asm code to find number of leading zeros

  • httpecho - server to dump information about an http request

  • lzpack - trivial packed format for lz4 compression

  • grinderplot - generate a flot chart from grinder logs

  • worker - framework for spawning concurrent workers

  • gddo - search godoc.org from the command line

  • uuid - generate random UUIDs

  • entropy - reducer to compute entropy per epoch for a set of values in a category

  • inthash - integer hashing functions

  • udprelay - simple udp-to-tcp multiplexing relay

  • shufsecs - shuffle sorted epoch-data within epochs

  • strtable - dumb string->uint32 hash table for profiling vs native maps

  • cachetest - playing with different caching algorithms (clock, lru, lfu, random)

  • glj - passing data from go to lua with msgpack

  • toms - text filter for time.Duration to milliseconds

  • bluniq - bloom-filter based unique filter

  • skvdist - check distribution of shardedkv choosers

  • gcwatch - print out garbage collection stats from /debug/vars

  • toepoch - convert time fields to epochs

  • repl - framework for making dumb repls for testing

  • skvchk - tool for checking shardedkv distributions

  • interp - interpolation search

  • oma - simulation of the Dutch children's board game "Met de bus naar Oma"

  • rndsample - uniform random sample from stdin

  • pphrase - simple passphrase generator

  • fastrand - fast xorshift rng with bias-free [0..n)

  • range2cird - turn IP ranges into CIDR

  • gfmt - trivial filter wrapping go-linebreak

  • mtest - port of libtommath test program

  • leven - fastest levenshtein distance algorithm I could find

  • matcher - test different methods of testing string set membership

  • cstbucket - crunch carbonserver logs for time-ranges of queries

  • stablepart - stable partition a sort.Interface on a boolean predicate

  • jumpreplica - tool for playing with replica choices for jump-hash

  • sshdregex - demo using ragel for optimized regexp matching

  • hllbench - benchmark different hyperloglog implementations

  • shlines, sipsum - tools for siphashing things

  • urlq - extract query parameters from a list of URLs

  • median - compute the median of 5 numbers with a sorting network

  • hashbench - benchmark different hashing functions

  • fastpprof - how to use pprof with fasthttp

  • ewmaest - progress logging with ewma-based ETA estimation

go-github-com-songmu-gitconfig 0.1.1
Propagated dependencies: go-github-com-goccy-go-yaml@1.12.0
Channel: guix
Location: gnu/packages/golang-xyz.scm (gnu packages golang-xyz)
Home page: https://github.com/songmu/gitconfig
Licenses: Expat
Synopsis: Go library to get configuration values from gitconfig
Description:

{gitconfig

go-github-com-temoto-robotstxt 1.1.2
Channel: efraim-dfsg
Location: dfsg/main/golang.scm (dfsg main golang)
Home page: https://github.com/temoto/robotstxt
Licenses: Expat
Synopsis:
#<unspecified>
go-github-com-antchfx-xmlquery 1.3.10
Propagated dependencies: go-github-com-antchfx-xpath@1.2.0 go-github-com-golang-groupcache@0.0.0-20210331224755-41bb18bfe9da go-golang-org-x-net@0.33.0 go-golang-org-x-text@0.21.0
Channel: efraim-dfsg
Location: dfsg/main/golang.scm (dfsg main golang)
Home page: https://github.com/antchfx/xmlquery
Licenses: Expat
Synopsis: xmlquery
#<unspecified>
go-github-com-eapache-channels 1.1.0
Propagated dependencies: go-github-com-eapache-queue@1.1.0
Channel: efraim-dfsg
Location: dfsg/main/golang.scm (dfsg main golang)
Home page: https://github.com/eapache/channels
Licenses: Expat
Synopsis: channels
#<unspecified>
go-github-com-manucorporat-sse 0.0.0-20160126180136-ee05b128a739
Channel: efraim-dfsg
Location: dfsg/main/golang.scm (dfsg main golang)
Home page: https://github.com/manucorporat/sse
Licenses: Expat
Synopsis:
#<unspecified>
go-github-com-rwcarlsen-goexif 0.0.0-20190401172101-9e8deecbddbd
Channel: efraim-dfsg
Location: dfsg/main/golang.scm (dfsg main golang)
Home page: https://github.com/rwcarlsen/goexif
Licenses: FreeBSD
Synopsis: goexif
#<unspecified>
go-github-com-buger-jsonparser 1.1.1
Channel: efraim-dfsg
Location: dfsg/main/golang.scm (dfsg main golang)
Home page: https://github.com/buger/jsonparser
Licenses: Expat
Synopsis:
#<unspecified>
go-github-com-couchbase-vellum 1.0.2
Propagated dependencies: go-github-com-blevesearch-mmap-go@1.0.3 go-github-com-spf13-cobra@1.8.1 go-github-com-bits-and-blooms-bitset@1.20.0 go-golang-org-x-sys@0.28.0
Channel: efraim-dfsg
Location: dfsg/main/golang.scm (dfsg main golang)
Home page: https://github.com/couchbase/vellum
Licenses: ASL 2.0
Synopsis: vellum
#<unspecified>
go-github-com-stellar-go-build 0.0.0-20191010205648-0fc3bfe3dfa7
Propagated dependencies: go-github-com-lib-pq@1.2.0 go-github-com-pkg-errors@0.9.1 go-github-com-stellar-go-xdr@0.0.0-20191010205648-0fc3bfe3dfa7 go-golang-org-x-crypto@0.31.0
Channel: efraim-dfsg
Location: dfsg/main/golang.scm (dfsg main golang)
Home page: https://github.com/stellar/go
Licenses: ASL 2.0
Synopsis:
#<unspecified>
go-github-com-keybase-go-jsonw 0.0.0-20200325173637-df90f282c233
Channel: efraim-dfsg
Location: dfsg/main/golang.scm (dfsg main golang)
Home page: https://github.com/keybase/go-jsonw
Licenses: Modified BSD
Synopsis: Json Wrapper for Go
#<unspecified>
Total results: 1736