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

commit d34910ab071d9216505ca8ac4554797a69bc5bcc
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Jan 11 13:45:50 2025 +0000

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

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 2ab5fc1750..01380e99e0 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -5448,6 +5448,30 @@ operations.")
      (list
       #:import-path "github.com/go-git/go-git-fixtures/v5"))))
 
+(define-public go-github-com-go-ini-ini
+  (package
+    (name "go-github-com-go-ini-ini")
+    (version "1.67.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/go-ini/ini";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1vpzkjmrwp7bqqsijp61293kk2vn6lcck56j8m5y6ks6cf21lpap"))))
+    (build-system go-build-system)
+    (arguments
+     (list #:import-path "github.com/go-ini/ini"))
+    (propagated-inputs
+     (list go-github-com-stretchr-testify))
+    (home-page "https://gopkg.in/ini.v1";)
+    (synopsis "INI file read and write functionality in Go")
+    (description
+     "This package provides INI file read and write functionality in Go.")
+    (license license:asl2.0)))
+
 (define-public go-github-com-go-kit-log
   (package
     (name "go-github-com-go-kit-log")
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 598f277bfd..7a4aab64c3 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -2540,29 +2540,6 @@ or capture raw audio.")
 @code{Secret Service} DBus interface.")
     (license license:expat)))
 
-(define-public go-github-com-go-ini-ini
-  (package
-    (name "go-github-com-go-ini-ini")
-    (version "1.67.0")
-    (source (origin
-              (method git-fetch)
-              (uri (git-reference
-                    (url "https://github.com/go-ini/ini";)
-                    (commit (string-append "v" version))))
-              (file-name (git-file-name name version))
-              (sha256
-               (base32
-                "1vpzkjmrwp7bqqsijp61293kk2vn6lcck56j8m5y6ks6cf21lpap"))))
-    (build-system go-build-system)
-    (arguments
-     (list #:import-path "github.com/go-ini/ini"))
-    (propagated-inputs (list go-github-com-stretchr-testify))
-    (home-page "https://gopkg.in/ini.v1";)
-    (synopsis "INI file read and write functionality in Go")
-    (description
-     "This package provides INI file read and write functionality in Go.")
-    (license license:asl2.0)))
-
 ;;;
 ;;; Avoid adding new packages to the end of this file. To reduce the chances
 ;;; of a merge conflict, place them above by existing packages with similar

Reply via email to