mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: go-gopkg-in-natefinch-lumberjack.v2: Move to golang-xyz.
* gnu/packages/golang.scm (go-gopkg-in-natefinch-lumberjack.v2): Move from here ... * gnu/packages/golang-xyz.scm: ... to here. * gnu/packages/finance.scm: Add (gnu packages golang-xyz) module. Change-Id: Ib31fe5787f7b9a5c10e527ea344adaf587aeea13
This commit is contained in:
parent
8ac6bd7741
commit
9358929873
3 changed files with 29 additions and 27 deletions
|
@ -97,6 +97,7 @@ (define-module (gnu packages finance)
|
|||
#:use-module (gnu packages gnupg)
|
||||
#:use-module (gnu packages golang)
|
||||
#:use-module (gnu packages golang-web)
|
||||
#:use-module (gnu packages golang-xyz)
|
||||
#:use-module (gnu packages graphviz)
|
||||
#:use-module (gnu packages groff)
|
||||
#:use-module (gnu packages gsasl)
|
||||
|
|
|
@ -8,10 +8,10 @@
|
|||
;;; Copyright © 2019-2022 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2020 Joseph LaFreniere <joseph@lafreniere.xyz>
|
||||
;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
|
||||
;;; Copyright © 2020, 2021 Martin Becze <mjbecze@riseup.net>
|
||||
;;; Copyright © 2020, 2021 raingloom <raingloom@riseup.net>
|
||||
;;; Copyright © 2021 Collin J. Doering <collin@rekahsoft.ca>
|
||||
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
|
||||
;;; Copyright © 2021 Martin Becze <mjbecze@riseup.net>
|
||||
;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
|
||||
;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev>
|
||||
;;; Copyright © 2021, 2023, 2024 Sharlatan Hellseher <sharlatanus@gmail.com>
|
||||
|
@ -2331,6 +2331,33 @@ (define-public go-gopkg-in-cheggaaa-pb-v1
|
|||
(list
|
||||
#:import-path "gopkg.in/cheggaaa/pb.v1"))))
|
||||
|
||||
(define-public go-gopkg-in-natefinch-lumberjack.v2
|
||||
(package
|
||||
(name "go-gopkg-in-natefinch-lumberjack.v2")
|
||||
(version "2.1")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/natefinch/lumberjack")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1l3vlv72b7rfkpy1164kwd3qzrqmmjnb67akzxqp2mlvc66k6p3d"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:import-path "gopkg.in/natefinch/lumberjack.v2"))
|
||||
(propagated-inputs
|
||||
(list go-github-com-burntsushi-toml
|
||||
go-gopkg-in-yaml-v2))
|
||||
(home-page "https://github.com/natefinch/lumberjack")
|
||||
(synopsis "Rolling logger for Go")
|
||||
(description
|
||||
"Lumberjack is a Go package for writing logs to rolling files.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public go-gopkg-in-op-go-logging-v1
|
||||
(package
|
||||
(inherit go-github-com-op-go-logging)
|
||||
|
|
|
@ -3173,32 +3173,6 @@ (define-public go-gopkg-in-tomb-v1
|
|||
"t.Fatalf(`Killf(\"BO%%s")))))))
|
||||
(home-page "https://gopkg.in/tomb.v1")))
|
||||
|
||||
(define-public go-gopkg-in-natefinch-lumberjack.v2
|
||||
(package
|
||||
(name "go-gopkg-in-natefinch-lumberjack.v2")
|
||||
(version "2.1")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/natefinch/lumberjack")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1l3vlv72b7rfkpy1164kwd3qzrqmmjnb67akzxqp2mlvc66k6p3d"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
'(#:import-path "gopkg.in/natefinch/lumberjack.v2"))
|
||||
(propagated-inputs
|
||||
`(("github.com/burntsush/toml" ,go-github-com-burntsushi-toml)
|
||||
("gopkg.in/yaml.v2" ,go-gopkg-in-yaml-v2)))
|
||||
(home-page "https://github.com/natefinch/lumberjack")
|
||||
(synopsis "Rolling logger for Go")
|
||||
(description
|
||||
"Lumberjack is a Go package for writing logs to rolling files.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public go-github.com-jtolds-gls
|
||||
(package
|
||||
(name "go-github.com-jtolds-gls")
|
||||
|
|
Loading…
Reference in a new issue