me
/
guix
Archived
1
0
Fork 0

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>
master
Artyom V. Poptsov 2024-05-15 09:17:10 +03:00 committed by Sharlatan Hellseher
parent 09535959a9
commit 26b324d082
No known key found for this signature in database
GPG Key ID: 76D727BFF62CD2B5
1 changed files with 24 additions and 0 deletions

View File

@ -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")