diff options
author | Martin Becze <mjbecze@riseup.net> | 2021-04-14 05:20:05 -0500 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-03-29 14:20:59 +0000 |
commit | 610f66cb4523622b745682c2b51e163220043192 (patch) | |
tree | 65a36f9d688e1be76ef68a7b6c91014aea43882f /gnu/packages/golang-xyz.scm | |
parent | d84fb791f6a3a010f7d3fbe2d8bab55db1e1bc1f (diff) | |
download | guix-610f66cb4523622b745682c2b51e163220043192.tar guix-610f66cb4523622b745682c2b51e163220043192.tar.gz |
gnu: Add go-gopkg-in-cheggaaa-pb-v1.
* gnu/packages/golang-xyz.scm (go-gopkg-in-cheggaaa-pb-v1): New variable.
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Change-Id: If46de99aca0d301aca18b088f57616d78fe90e19
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index c7670ef887..c495d1faca 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -11,6 +11,7 @@ ;;; Copyright © 2020, 2021 raingloom <raingloom@riseup.net> ;;; Copyright © 2021 Collin J. Doering <collin@rekahsoft.ca> ;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net> +;;; Copyright © 2021 Martin Becze <mjbecze@riseup.net> ;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name> ;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev> ;;; Copyright © 2021, 2023, 2024 Sharlatan Hellseher <sharlatanus@gmail.com> @@ -2180,6 +2181,24 @@ Go.") (list #:import-path "gopkg.in/alecthomas/kingpin.v2")))) +(define-public go-gopkg-in-cheggaaa-pb-v1 + (package + (inherit go-github-com-cheggaaa-pb-v3) + (name "go-gopkg-in-cheggaaa-pb-v1") + (version "1.0.28") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/cheggaaa/pb.v1.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "13a66cqbpdif804qj12z9ad8r24va9q41gfk71qbc4zg1wsxs3rh")))) + (arguments + (list + #:import-path "gopkg.in/cheggaaa/pb.v1")))) + (define-public go-gopkg-in-op-go-logging-v1 (package (inherit go-github-com-op-go-logging) |