guix-commits
[Top][All Lists]
Advanced

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

57/63: gnu: go-github-com-huandu-xstrings: Move to golang-xyz.


From: guix-commits
Subject: 57/63: gnu: go-github-com-huandu-xstrings: Move to golang-xyz.
Date: Sat, 28 Dec 2024 11:13:45 -0500 (EST)

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

commit 9f7ac47af9a51f60d0275ba5a8614f34f605bcbb
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Sat Dec 28 15:45:03 2024 +0000

    gnu: go-github-com-huandu-xstrings: Move to golang-xyz.
    
    * gnu/packages/golang.scm (go-github-com-huandu-xstrings): Move from
    here ...
    * gnu/packages/golang-xyz.scm: ... to here.
    
    Change-Id: I071023737c0c6c2726e1100e663c0593e53409f3
---
 gnu/packages/golang-xyz.scm | 24 ++++++++++++++++++++++++
 gnu/packages/golang.scm     | 22 ----------------------
 2 files changed, 24 insertions(+), 22 deletions(-)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 847f06adf6..1fe385149c 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -5766,6 +5766,30 @@ anniversaries.")
 subsystem in Linux.")
     (license license:expat)))
 
+(define-public go-github-com-huandu-xstrings
+  (package
+    (name "go-github-com-huandu-xstrings")
+    (version "1.5.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/huandu/xstrings";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "04z4xb22mi03a772f1si2fqwi5vn5584afzxas73jc6n6sppz0db"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/huandu/xstrings"))
+    (home-page "https://github.com/huandu/xstrings/";)
+    (synopsis "Collection of string functions")
+    (description
+     "Go package xstrings is a collection of string functions,which are widely
+used in other languages but absent in Go package strings.")
+    (license license:expat)))
+
 (define-public go-github-com-ianlancetaylor-demangle
   ;; No release, see <https://github.com/ianlancetaylor/demangle/issues/21>.
   (package
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 7941fdc0fb..35aacb15de 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -4234,28 +4234,6 @@ various ways.  It is a Go implementation of some string 
manipulation libraries
 of Java Apache Commons.")
     (license license:asl2.0)))
 
-(define-public go-github-com-huandu-xstrings
-  (package
-    (name "go-github-com-huandu-xstrings")
-    (version "1.5.0")
-    (source (origin
-              (method git-fetch)
-              (uri (git-reference
-                    (url "https://github.com/huandu/xstrings";)
-                    (commit (string-append "v" version))))
-              (file-name (git-file-name name version))
-              (sha256
-               (base32
-                "04z4xb22mi03a772f1si2fqwi5vn5584afzxas73jc6n6sppz0db"))))
-    (build-system go-build-system)
-    (arguments
-     `(#:import-path "github.com/huandu/xstrings"))
-    (home-page "https://github.com/huandu/xstrings/";)
-    (synopsis "Collection of string functions")
-    (description "Go package xstrings is a collection of string functions,
-which are widely used in other languages but absent in Go package strings.")
-    (license license:expat)))
-
 (define-public go-github-com-imdario-mergo
   (package
     (name "go-github-com-imdario-mergo")



reply via email to

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