sharlatan pushed a commit to branch go-team
in repository guix.

commit b4ccd0b1946bee908b7d8234ff9f8e3494630d70
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Nov 24 11:56:23 2024 +0000

    gnu: go-github-com-nxadm-tail: Move to golang-xyz.
    
    * gnu/packages/golang.scm (go-github-com-nxadm-tail): Move from here ...
    * gnu/packages/golang-xyz.scm: ... to here.
    
    Change-Id: I9762891d9c8cd8d2c01e69153eab88aa909ea7d1
---
 gnu/packages/golang-xyz.scm | 25 +++++++++++++++++++++++++
 gnu/packages/golang.scm     | 24 ------------------------
 2 files changed, 25 insertions(+), 24 deletions(-)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 4facf333a7..83de8587e2 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -5861,6 +5861,31 @@ queue.")
 NSQ protocol @url{https://nsq.io/}.";)
     (license license:expat)))
 
+(define-public go-github-com-nxadm-tail
+  (package
+    (name "go-github-com-nxadm-tail")
+    (version "1.4.11")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/nxadm/tail";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0s8lawq661g8qqf7c1cip5l60cm2138b125jgmv9h548ji9g5yqx"))))
+    (build-system go-build-system)
+    (arguments (list #:import-path "github.com/nxadm/tail"))
+    (propagated-inputs
+     (list go-github-com-fsnotify-fsnotify
+           go-gopkg-in-tomb-v1))
+    (home-page "https://github.com/nxadm/tail";)
+    (synopsis "Go implementation of the functionality of @command{tail -f}")
+    (description
+     "This package provides a Go library for reading from continuously
+updating files, like @command{tail -f}.")
+    (license license:expat)))
+
 (define-public go-github-com-oklog-run
   (package
     (name "go-github-com-oklog-run")
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 52709db52d..49387cb206 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-nxadm-tail
-  (package
-    (name "go-github-com-nxadm-tail")
-    (version "1.4.11")
-    (source (origin
-              (method git-fetch)
-              (uri (git-reference
-                    (url "https://github.com/nxadm/tail";)
-                    (commit (string-append "v" version))))
-              (file-name (git-file-name name version))
-              (sha256
-               (base32
-                "0s8lawq661g8qqf7c1cip5l60cm2138b125jgmv9h548ji9g5yqx"))))
-    (build-system go-build-system)
-    (arguments (list #:import-path "github.com/nxadm/tail"))
-    (propagated-inputs (list go-gopkg-in-tomb-v1
-                             go-github-com-fsnotify-fsnotify))
-    (home-page "https://github.com/nxadm/tail";)
-    (synopsis "Go implementation of the functionality of @command{tail -f}")
-    (description
-     "This package provides a Go library for reading from continuously
-updating files, like @command{tail -f}.")
-    (license license:expat)))
-
 (define-public go-github-com-magiconair-properties
   (package
     (name "go-github-com-magiconair-properties")

Reply via email to