diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-07 15:47:17 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-22 20:13:03 +0100 |
commit | bdf0d0afa9e976370b79c09c7aa3d34a3f05f4e6 (patch) | |
tree | 2a509f093d3bacdb4c6760f9407df16dd0645370 /gnu/packages/golang-xyz.scm | |
parent | 78397b81aca295019865cec3bc1203d9cd4cd95e (diff) |
gnu: Add go-github-com-eapache-channels.
* gnu/packages/golang-xyz.scm (go-github-com-eapache-channels): New variable.
Change-Id: If01fbb35ec9bcb3bc9da398ec972bb9330eaa38e
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 7112c684be..9c6614e274 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -5510,6 +5510,35 @@ Implements string conversion functionality for unit prefixes. sizes. It converts boring ugly numbers to human-friendly strings and back.") (license license:expat))) +(define-public go-github-com-eapache-channels + (package + (name "go-github-com-eapache-channels") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/eapache/channels") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "179ryd2rqsccnv5nk35f8j4nfbqr8cgb2bjm0j8isvf5nzks8s9y")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/eapache/channels")) + (propagated-inputs + (list go-github-com-eapache-queue)) + (home-page "https://github.com/eapache/channels") + (synopsis "Portable mmap package for Golang") + (description + "Package channels provides a collection of helper functions, interfaces +and implementations for working with and extending the capabilities of +golang's existing channels. The main interface of interest is Channel, though +sub-interfaces are also provided for cases where the full Channel interface +cannot be met (for example, @code{InChannel} for write-only channels).") + (license license:expat))) + (define-public go-github-com-eapache-queue (package (name "go-github-com-eapache-queue") |