1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-16 12:00:35 +02:00

gnu: go-github-com-btcsuite-btclog: Move to golang-xyz.

* gnu/packages/golang.scm (go-github-com-btcsuite-btclog): Move from
here ...
* gnu/packages/golang-xyz.scm: ... to here.

Change-Id: Idabd6bbe1ecdac641a4a7eab0f391691f4834a00
This commit is contained in:
Sharlatan Hellseher 2025-01-07 15:26:19 +00:00
parent f14b65cd86
commit 7aa9c96d70
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 25 additions and 24 deletions

View file

@ -1952,6 +1952,31 @@ don't require a full database server such as Postgres or MySQL.")
indicator to any terminal application.")
(license license:asl2.0)))
(define-public go-github-com-btcsuite-btclog
(package
(name "go-github-com-btcsuite-btclog")
(version "1.0.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/btcsuite/btclog")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1aqpgb3bw1g5am2az4f1g1a54xii0axvxp0zymhyl8jdk6hhyyd8"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/btcsuite/btclog"))
(home-page "https://github.com/btcsuite/btclog")
(synopsis "Subsystem aware logger for Go")
(description
"Package @command{btclog} defines a logger interface and provides a
default implementation of a subsystem-aware leveled logger implementing the
same interface.")
(license license:isc)))
(define-public go-github-com-buildkite-shellwords
(package
(name "go-github-com-buildkite-shellwords")