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:
Sharlatan Hellseher 2024-03-29 13:57:31 +00:00
parent 8ac6bd7741
commit 9358929873
No known key found for this signature in database
GPG Key ID: 76D727BFF62CD2B5
3 changed files with 29 additions and 27 deletions

View File

@ -97,6 +97,7 @@
#: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)

View File

@ -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 @@ Go.")
(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)

View File

@ -3173,32 +3173,6 @@ termination.")
"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")