diff options
author | Sharlatan Hellseher <[email protected]> | 2025-01-25 08:29:03 +0000 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2025-01-25 08:29:25 +0000 |
commit | f4043c08fd8a2b29778937762728e2ffcdf970ed (patch) | |
tree | 9a8cad82fa3b6da8d1bf4390a43595862a64a453 /gnu | |
parent | cfd8425b8526981ba7f2fa8ccc2401d725352f9a (diff) |
gnu: Add go-github-com-xaionaro-go-bytesextra.
* gnu/packages/golang-xyz.scm (go-github-com-xaionaro-go-bytesextra): New variable.
Change-Id: Ic14dcee9fd2bca052e120abf9acf86b80c910005
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 4980db6e69..9e0b391956 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -15357,6 +15357,31 @@ edges and self-loops are not permitted. (including private/unexported) of a structure.") (license license:cc0))) +(define-public go-github-com-xaionaro-go-bytesextra + (package + (name "go-github-com-xaionaro-go-bytesextra") + (version "0.0.0-20220103144954-846e454ddea9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xaionaro-go/bytesextra") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zggis1mdrfnashngg5hc6a6r6glcxzgj87ali7qdi02bnrl8s9i")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/xaionaro-go/bytesextra")) + (native-inputs (list go-github-com-stretchr-testify)) + (home-page "https://github.com/xaionaro-go/bytesextra") + (synopsis "Golang library for bytes I/O") + (description + "This packae provides @code{io.ReadWriteSeeker} implementation for +@code{[]byte}.") + (license license:cc0))) + (define-public go-github-com-xdg-go-stringprep (package (name "go-github-com-xdg-go-stringprep") |