[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#48729] [PATCH v2 33/47] gnu: Add go-github-com-getlantern-golog.
From: |
Raghav Gururajan |
Subject: |
[bug#48729] [PATCH v2 33/47] gnu: Add go-github-com-getlantern-golog. |
Date: |
Thu, 3 Jun 2021 06:44:53 -0400 |
* gnu/packages/golang.scm (go-github-com-getlantern-golog): New variable.
---
gnu/packages/golang.scm | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index eaca6b9351..3e7366f60f 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -69,6 +69,41 @@
#:use-module (ice-9 match)
#:use-module (srfi srfi-1))
+(define-public go-github-com-getlantern-golog
+ (let ((commit "9586b8bde3a95f71c84d9ee2a1a3f778759a76ab")
+ (revision "25"))
+ (package
+ (name "go-github-com-getlantern-golog")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://github.com/getlantern/golog")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0pqmvjqh5lv5ldc93srvlq9nwianxyjfvmjzxx4xmncbxgqsxgli"))))
+ (build-system go-build-system)
+ (arguments
+ `(#:import-path "github.com/getlantern/golog"))
+ (native-inputs
+ `(("go-github-com-stretchr-testify" ,go-github-com-stretchr-testify)))
+ (propagated-inputs
+ `(("go-github-com-getlantern-errors"
+ ,go-github-com-getlantern-errors)
+ ("go-github-com-getlantern-hidden"
+ ,go-github-com-getlantern-hidden)
+ ("go-github-com-getlantern-ops"
+ ,go-github-com-getlantern-ops)
+ ("go-github-com-oxtoacart-bpool"
+ ,go-github-com-oxtoacart-bpool)))
+ (synopsis "Basic logging for Go")
+ (description "GoLog provides logging used in many getlantern
components.")
+ (home-page "https://github.com/getlantern/golog")
+ (license license:asl2.0))))
+
(define-public go-github-com-oxtoacart-bpool
(let ((commit "03653db5a59cd88b481403d312d7c324b56af377")
(revision "18"))
--
2.31.1
- [bug#48729] [PATCH v2 26/47] gnu: Add go-github-com-getlantern-context., (continued)
- [bug#48729] [PATCH v2 26/47] gnu: Add go-github-com-getlantern-context., Raghav Gururajan, 2021/06/03
- [bug#48729] [PATCH v2 28/47] gnu: Add go-github-com-getlantern-hex., Raghav Gururajan, 2021/06/03
- [bug#48729] [PATCH v2 29/47] gnu: Add go-github-com-getlantern-hidden., Raghav Gururajan, 2021/06/03
- [bug#48729] [PATCH v2 27/47] gnu: Add go-github-com-getlantern-ops., Raghav Gururajan, 2021/06/03
- [bug#48729] [PATCH v2 32/47] gnu: Add go-github-com-oxtoacart-bpool., Raghav Gururajan, 2021/06/03
- [bug#48729] [PATCH v2 36/47] gnu: Add go-github-com-jmshal-go-locale., Raghav Gururajan, 2021/06/03
- [bug#48729] [PATCH v2 35/47] gnu: Add go-github-com-gotk3-gotk3., Raghav Gururajan, 2021/06/03
- [bug#48729] [PATCH v2 34/47] gnu: Add go-github-com-getlantern-systray., Raghav Gururajan, 2021/06/03
- [bug#48729] [PATCH v2 30/47] gnu: Add go-github-com-go-stack-stack., Raghav Gururajan, 2021/06/03
- [bug#48729] [PATCH v2 31/47] gnu: Add go-github-com-getlantern-errors., Raghav Gururajan, 2021/06/03
- [bug#48729] [PATCH v2 33/47] gnu: Add go-github-com-getlantern-golog.,
Raghav Gururajan <=