guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

30/32: gnu: go-github-com-olekukonko-tablewriter: Move to golang-xyz.


From: guix-commits
Subject: 30/32: gnu: go-github-com-olekukonko-tablewriter: Move to golang-xyz.
Date: Sun, 24 Nov 2024 07:50:54 -0500 (EST)

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

commit 784e9bedbe69fb29ba2d315ed46137b9ce0431e7
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Sun Nov 24 12:40:41 2024 +0000

    gnu: go-github-com-olekukonko-tablewriter: Move to golang-xyz.
    
    * gnu/packages/golang.scm (go-github-com-olekukonko-tablewriter): Move
    from here ...
    * gnu/packages/golang-xyz.scm: ... to here.
    
    Change-Id: I29317ffb579c61cfd3197cfae53aa3158e34ff63
---
 gnu/packages/golang-xyz.scm | 41 +++++++++++++++++++++++++++++++++++++++++
 gnu/packages/golang.scm     | 40 ----------------------------------------
 2 files changed, 41 insertions(+), 40 deletions(-)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 40798b4f0d..f2ba5d862d 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -6080,6 +6080,47 @@ millisecond)
      (list
       #:import-path "github.com/oklog/ulid/v2"))))
 
+(define-public go-github-com-olekukonko-tablewriter
+  (package
+    (name "go-github-com-olekukonko-tablewriter")
+    (version "0.0.5")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/olekukonko/tablewriter";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0zhnrih2px6jm8nxzkz8s7va3lj03bzwxim8wjba9zh7i78bp67z"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/olekukonko/tablewriter"))
+    (propagated-inputs
+     (list go-github-com-mattn-go-runewidth))
+    (home-page "https://github.com/olekukonko/tablewriter/";)
+    (synopsis "Generate ASCII table")
+    (description "This package generates ASCII tables.  Features:
+@itemize
+@item automatic Padding
+@item support Multiple Lines
+@item supports Alignment
+@item support Custom Separators
+@item automatic Alignment of numbers and percentage
+@item write directly to http , file etc via @code{io.Writer}
+@item read directly from CSV file
+@item optional row line via @code{SetRowLine}
+@item normalise table header
+@item make CSV Headers optional
+@item enable or disable table border
+@item set custom footer support
+@item optional identical cells merging
+@item set custom caption
+@item optional reflowing of paragrpahs in multi-line cells
+@end itemize")
+    (license license:expat)))
+
 (define-public go-github-com-op-go-logging
   (package
     (name "go-github-com-op-go-logging")
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 92dc51a623..7a505e7a9f 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -5391,46 +5391,6 @@ maps (because they are not addressable using Go 
reflection).")
     (native-inputs
      (list go-gopkg-in-yaml-v3))))
 
-(define-public go-github-com-olekukonko-tablewriter
-  (package
-    (name "go-github-com-olekukonko-tablewriter")
-    (version "0.0.5")
-    (source (origin
-              (method git-fetch)
-              (uri (git-reference
-                    (url "https://github.com/olekukonko/tablewriter";)
-                    (commit (string-append "v" version))))
-              (file-name (git-file-name name version))
-              (sha256
-               (base32
-                "0zhnrih2px6jm8nxzkz8s7va3lj03bzwxim8wjba9zh7i78bp67z"))))
-    (build-system go-build-system)
-    (arguments
-     `(#:import-path "github.com/olekukonko/tablewriter"))
-    (propagated-inputs
-     (list go-github-com-mattn-go-runewidth))
-    (home-page "https://github.com/olekukonko/tablewriter/";)
-    (synopsis "Generate ASCII table")
-    (description "This package generates ASCII tables.  Features:
-@itemize
-@item automatic Padding
-@item support Multiple Lines
-@item supports Alignment
-@item support Custom Separators
-@item automatic Alignment of numbers and percentage
-@item write directly to http , file etc via @code{io.Writer}
-@item read directly from CSV file
-@item optional row line via @code{SetRowLine}
-@item normalise table header
-@item make CSV Headers optional
-@item enable or disable table border
-@item set custom footer support
-@item optional identical cells merging
-@item set custom caption
-@item optional reflowing of paragrpahs in multi-line cells
-@end itemize\n")
-    (license license:expat)))
-
 (define-public go-github-com-olekukonko-ts
   (let ((commit "78ecb04241c0121483589a30b0814836a746187d")
         (revision "0"))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]