diff options
author | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2024-05-15 09:17:10 +0300 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-05-16 23:07:39 +0100 |
commit | 26b324d08279a1d04d8f19fd569822c9e15356ab (patch) | |
tree | 8bf43e1c199161062171c4620ee837651789addb | |
parent | 09535959a9d17f0d327f3454dc78c0be1f7b43e4 (diff) | |
download | guix-26b324d08279a1d04d8f19fd569822c9e15356ab.tar guix-26b324d08279a1d04d8f19fd569822c9e15356ab.tar.gz |
gnu: Add go-github-com-pion-logging.
* gnu/packages/golang-xyz.scm (go-github-com-pion-logging): New variable.
Change-Id: I2da53900059251b78cad2bb56cfbc87228c91e23
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-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 cd023da86c..e69a65c3da 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -2982,6 +2982,30 @@ processes.") on top of the standard library @code{flag} package.") (license license:bsd-3))) +(define-public go-github-com-pion-logging + (package + (name "go-github-com-pion-logging") + (version "0.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pion/logging/") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11ay8c15xk3pv7y9nd80szk3mci480x67yqlgb10vswrz4h4mx3v")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/pion/logging")) + (home-page "https://github.com/pion/logging/") + (synopsis "Logging library for Golang projects") + (description +"This package provides a logging library used by @url{https://github.com/pion, +Pion}.") + (license license:expat))) + (define-public go-github-com-prometheus-client-model (package (name "go-github-com-prometheus-client-model") |