diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-02-14 21:54:38 +0000 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-02-15 18:06:16 +0000 |
| commit | 643c4bf52b9cd86d60e6c8bb03e76900d7d9df35 (patch) | |
| tree | dd02769da5b237f24556bd8bc452e5b942e496f6 | |
| parent | 0f79225428153cad6edf3f7190b681052d93c9cd (diff) | |
gnu: Add go-github-com-bodgit-plumbing.
* gnu/packages/golang-xyz.scm (go-github-com-bodgit-plumbing): New variable.
Change-Id: Ib256f8e8595131480f9636838b819f8fc6b1e714
| -rw-r--r-- | gnu/packages/golang-xyz.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 0d98e6b9d4..952b415681 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -2981,6 +2981,30 @@ matching and globbing with support for \"doublestar\" patterns.") quantiles over an unbounded data stream within low memory and CPU bounds.") (license license:bsd-2))) +(define-public go-github-com-bodgit-plumbing + (package + (name "go-github-com-bodgit-plumbing") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bodgit/plumbing") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vbyc6pxirnkvcx5acqcxg57ii3h2fv1d9dx3mq6mcbn00jdsqly")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/bodgit/plumbing")) + (native-inputs + (list go-github-com-stretchr-testify)) + (home-page "https://github.com/bodgit/plumbing") + (synopsis "I/O helpers utils for Golang") + (description "Package plumbing is a collection of assorted I/O helpers.") + (license license:bsd-3))) + ;; XXX: This repository has been archived by the owner on Mar 9, 2019. It is ;; now read-only. (define-public go-github-com-boltdb-bolt |
