summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <[email protected]>2025-01-08 20:55:09 +0000
committerSharlatan Hellseher <[email protected]>2025-01-21 23:47:46 +0000
commit9b1bbc81dc9a9c69f71c420aab6547dde14c44c1 (patch)
treeb068f2e5bf818b741311ffe2a570b909ee59ef49
parentd8ce1531c60f6c11ef9f4b15cd01fb10b85f3ffd (diff)
gnu: go-github-com-kataras-golog: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-kataras-golog): Move from here ... * gnu/packages/golang-xyz.scm: ... to here. Change-Id: I9af9de46300f34983c5a1716ebc3421049b2a385
-rw-r--r--gnu/packages/golang-xyz.scm25
-rw-r--r--gnu/packages/golang.scm24
2 files changed, 25 insertions, 24 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 54885d2b90..5bd58289f6 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -8244,6 +8244,31 @@ them.")
"Go long flag: a light-weight long and short command line option parser.")
(license license:bsd-3)))
+(define-public go-github-com-kataras-golog
+ (package
+ (name "go-github-com-kataras-golog")
+ (version "0.1.12")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/kataras/golog")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1szibhgxmkd52gz6i77p3fwlxqyidj7l5vf59pjl5bjy8ggv0kpv"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/kataras/golog"))
+ (propagated-inputs
+ (list go-github-com-kataras-pio))
+ (home-page "https://github.com/kataras/golog")
+ (synopsis "Logging foundation for Go applications")
+ (description
+ "GoLog is a level-based logger written in Go.")
+ (license license:bsd-3)))
+
(define-public go-github-com-kataras-pio
(package
(name "go-github-com-kataras-pio")
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 43fe135b96..256d9e65c2 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1218,30 +1218,6 @@ form that bypasses network filtering, allowing the application to work on
networks where it would otherwise be blocked or heavily throttled.")
(license license:expat)))
-(define-public go-github-com-kataras-golog
- (package
- (name "go-github-com-kataras-golog")
- (version "0.1.12")
- (source
- (origin
- (method git-fetch)
- (uri
- (git-reference
- (url "https://github.com/kataras/golog")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32 "1szibhgxmkd52gz6i77p3fwlxqyidj7l5vf59pjl5bjy8ggv0kpv"))))
- (build-system go-build-system)
- (arguments
- `(#:import-path "github.com/kataras/golog"))
- (propagated-inputs
- (list go-github-com-kataras-pio))
- (home-page "https://github.com/kataras/golog")
- (synopsis "Logging foundation for Go applications")
- (description "GoLog is a level-based logger written in Go.")
- (license license:bsd-3)))
-
(define-public go-github-com-kortschak-utter
(package
(name "go-github-com-kortschak-utter")