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

commit 5020362acfa10fc8e1ebd8ed8b518f8db7160d71
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Nov 24 12:35:43 2024 +0000

    gnu: go-github-com-mitchellh-mapstructure: Move to golang-xyz.
    
    * gnu/packages/golang.scm (go-github-com-mitchellh-mapstructure): Move
    from here ...
    * gnu/packages/golang-xyz.scm: ... to here.
    
    Change-Id: I33ff5f856b6473363a1fcf9701583ce2176e5964
---
 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 1c304752e8..40798b4f0d 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -5353,6 +5353,30 @@ colored strings.")
      "Colorstring provides functions for colorizing strings for terminal 
output.")
     (license license:expat)))
 
+;; XXX: This package is in maintenance mode: "This repository has been
+;; archived by the owner on Jul 22, 2024. It is now read-only."
+(define-public go-github-com-mitchellh-mapstructure
+  (package
+    (name "go-github-com-mitchellh-mapstructure")
+    (version "1.5.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/mitchellh/mapstructure";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "10f2v143lkip8h46shd99k5yavfqpgqmd7a6y42v7szc0lcn3mff"))))
+    (build-system go-build-system)
+    (arguments
+     `(#:import-path "github.com/mitchellh/mapstructure"))
+    (home-page "https://github.com/mitchellh/mapstructure";)
+    (synopsis "Go library for decoding generic map values")
+    (description "Go library for decoding generic map values")
+    (license license:expat)))
+
 (define-public go-github-com-modern-go-concurrent
   (package
     (name "go-github-com-modern-go-concurrent")
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 9f0b8ab390..8e24b24524 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -4103,28 +4103,6 @@ the current user without cgo.  This library does that, 
enabling
 cross-compilation.")
       (license license:expat))))
 
-(define-public go-github-com-mitchellh-mapstructure
-  (package
-    (name "go-github-com-mitchellh-mapstructure")
-    (version "1.5.0")
-    (source
-     (origin
-       (method git-fetch)
-       (uri (git-reference
-             (url "https://github.com/mitchellh/mapstructure";)
-             (commit (string-append "v" version))))
-       (file-name (git-file-name name version))
-       (sha256
-        (base32
-         "10f2v143lkip8h46shd99k5yavfqpgqmd7a6y42v7szc0lcn3mff"))))
-    (build-system go-build-system)
-    (arguments
-     `(#:import-path "github.com/mitchellh/mapstructure"))
-    (home-page "https://github.com/mitchellh/mapstructure";)
-    (synopsis "Go library for decoding generic map values")
-    (description "Go library for decoding generic map values")
-    (license license:expat)))
-
 (define-public go-github-com-mitchellh-reflectwalk
   (package
     (name "go-github-com-mitchellh-reflectwalk")

Reply via email to