gnu: go-go-uber-org-zap: Move to golang-xyz.
* gnu/packages/golang.scm (go-go-uber-org-zap): Move from here ... * gnu/packages/golang-xyz.scm: ... to here. * gnu/packages/radio.scm: Add (gnu packages golang-xyz) module. Change-Id: Id4de6cb4714b9b28e43e5aecabf5b32684f1a370
This commit is contained in:
parent
d3bc9e73e5
commit
c3992c8871
3 changed files with 35 additions and 30 deletions
|
@ -7,6 +7,7 @@
|
|||
;;; Copyright © 2020 Joseph LaFreniere <joseph@lafreniere.xyz>
|
||||
;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
|
||||
;;; Copyright © 2020, 2021 raingloom <raingloom@riseup.net>
|
||||
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
|
||||
;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
|
||||
;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev>
|
||||
;;; Copyright © 2022 Dominic Martinez <dom@dominicm.dev>
|
||||
|
@ -1495,6 +1496,39 @@ weighted moving averages}.")
|
|||
CPU quota.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public go-go-uber-org-zap
|
||||
(package
|
||||
(name "go-go-uber-org-zap")
|
||||
(version "1.24.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/uber-go/zap")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0lzbbs87fvixzbyv4wpl3s70vm2m0jz2jgdvrviiksc2al451qgs"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
'(#:import-path "go.uber.org/zap"
|
||||
#:tests? #f)) ; TODO: Fix tests
|
||||
(native-inputs
|
||||
(list go-github-com-stretchr-testify
|
||||
go-golang-org-x-lint
|
||||
go-honnef-co-go-tools))
|
||||
(propagated-inputs
|
||||
(list go-github-com-pkg-errors
|
||||
go-go-uber-org-atomic
|
||||
go-go-uber-org-multierr
|
||||
go-gopkg-in-yaml-v2))
|
||||
(home-page "https://go.uber.org/zap")
|
||||
(synopsis "Logging library for Go")
|
||||
(description
|
||||
"This package provides a library for fast, structured, leveled logging in
|
||||
Go.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public go-gopkg-in-op-go-logging-v1
|
||||
(package
|
||||
(inherit go-github-com-op-go-logging)
|
||||
|
|
|
@ -9319,36 +9319,6 @@ be used as both a binary and a library.")
|
|||
(native-inputs '())
|
||||
(inputs '())))
|
||||
|
||||
(define-public go-go-uber-org-zap
|
||||
(package
|
||||
(name "go-go-uber-org-zap")
|
||||
(version "1.24.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/uber-go/zap")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0lzbbs87fvixzbyv4wpl3s70vm2m0jz2jgdvrviiksc2al451qgs"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
'(#:import-path "go.uber.org/zap"
|
||||
#:tests? #f)) ; TODO: Fix tests
|
||||
(native-inputs
|
||||
(list go-github-com-stretchr-testify go-golang-org-x-lint
|
||||
go-honnef-co-go-tools))
|
||||
(propagated-inputs
|
||||
(list go-github-com-pkg-errors go-go-uber-org-atomic
|
||||
go-go-uber-org-multierr go-gopkg-in-yaml-v2))
|
||||
(home-page "https://go.uber.org/zap")
|
||||
(synopsis "Logging library for Go")
|
||||
(description
|
||||
"This package provides a library for fast, structured, leveled logging in
|
||||
Go.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public go-github-com-davecgh-go-xdr
|
||||
(package
|
||||
(name "go-github-com-davecgh-go-xdr")
|
||||
|
|
|
@ -63,6 +63,7 @@
|
|||
#:use-module (gnu packages glib)
|
||||
#:use-module (gnu packages gnome)
|
||||
#:use-module (gnu packages golang)
|
||||
#:use-module (gnu packages golang-xyz)
|
||||
#:use-module (gnu packages gps)
|
||||
#:use-module (gnu packages graphviz)
|
||||
#:use-module (gnu packages gstreamer)
|
||||
|
|
Reference in a new issue