sharlatan pushed a commit to branch go-team
in repository guix.
commit 7c37f7f622729decd468eb45e4a183ddec5b9021
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Nov 24 11:34:28 2024 +0000
gnu: go-github-com-spf13-jwalterweatherman: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-spf13-jwalterweatherman): Move
from here ...
* gnu/packages/golang-xyz.scm: ... to here.
Change-Id: Icb52b710679d4ee51e7ae9a47ae9b12f3f9b3203
---
gnu/packages/golang-xyz.scm | 24 ++++++++++++++++++++++++
gnu/packages/golang.scm | 24 ------------------------
2 files changed, 24 insertions(+), 24 deletions(-)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index eb5185f72f..97e937f992 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -6949,6 +6949,30 @@ Use waterutil with it to work with TUN/TAP
packets/frames.")
well as a program to generate applications and command files.")
(license license:asl2.0)))
+(define-public go-github-com-spf13-jwalterweatherman
+ (package
+ (name "go-github-com-spf13-jwalterweatherman")
+ (version "1.1.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/spf13/jwalterweatherman")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1ywmkwci5zyd88ijym6f30fj5c0k2yayxarkmnazf5ybljv50q7b"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/spf13/jwalterweatherman"))
+ (native-inputs
+ (list go-github-com-stretchr-testify))
+ (home-page "https://github.com/spf13/jwalterweatherman")
+ (synopsis "Go logging library")
+ (description "Go logging library")
+ (license license:expat)))
+
(define-public go-github-com-stathat-go
(let ((commit "74669b9f388d9d788c97399a0824adbfee78400e")
(revision "0"))
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 9ef6bb1349..41d770046e 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -3178,30 +3178,6 @@ information about the resource usage and performance
characteristics of running
containers.")
(license license:asl2.0))))
-(define-public go-github-com-spf13-jwalterweatherman
- (package
- (name "go-github-com-spf13-jwalterweatherman")
- (version "1.1.0")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/spf13/jwalterweatherman")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "1ywmkwci5zyd88ijym6f30fj5c0k2yayxarkmnazf5ybljv50q7b"))))
- (build-system go-build-system)
- (arguments
- `(#:import-path "github.com/spf13/jwalterweatherman"))
- (native-inputs
- (list go-github-com-stretchr-testify))
- (home-page "https://github.com/spf13/jwalterweatherman")
- (synopsis "Go logging library")
- (description "Go logging library")
- (license license:expat)))
-
;; XXX: Not maintained for 3y, see
;; <https://github.com/spf13/pflag/issues/385>.
(define-public go-github-com-spf13-pflag