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

commit b3413ec5573a4e333f342a60b55e03ea281cb738
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Jan 11 13:28:46 2025 +0000

    gnu: go-github-com-shurcool-sanitized-anchor-name: Move to golang-xyz.
    
    * gnu/packages/golang.scm
    (go-github-com-shurcool-sanitized-anchor-name): Move from here ...
    * gnu/packages/golang-xyz.scm: ... to here.
    
    Change-Id: Ieabd617d33e2185de2ded7b58f26fede569017ac
---
 gnu/packages/golang-xyz.scm | 25 +++++++++++++++++++++++++
 gnu/packages/golang.scm     | 23 -----------------------
 2 files changed, 25 insertions(+), 23 deletions(-)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 16d69d959f..c8f86bb31b 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -12958,6 +12958,31 @@ sensors).")
                ;; environment.
                (string-append "src/" import-path "/host/host_test.go")))))))))
 
+(define-public go-github-com-shurcool-sanitized-anchor-name
+  (package
+    (name "go-github-com-shurcool-sanitized-anchor-name")
+    (version "1.0.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/shurcooL/sanitized_anchor_name";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/shurcooL/sanitized_anchor_name"))
+    (home-page "https://github.com/shurcooL/sanitized_anchor_name";)
+    (synopsis "Create sanitized anchor names")
+    (description
+     "This package provides a Go program for creating sanitized anchor
+names.")
+    (license license:expat)))
+
 (define-public go-github-com-sirupsen-logrus
   (package
     (name "go-github-com-sirupsen-logrus")
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 5b13710c2e..cf6f805151 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -2254,29 +2254,6 @@ be performed.")
 of building man pages.")
     (license license:expat)))
 
-(define-public go-github-com-shurcool-sanitized-anchor-name
-  (package
-    (name "go-github-com-shurcool-sanitized-anchor-name")
-    (version "1.0.0")
-    (source
-     (origin
-       (method git-fetch)
-       (uri (git-reference
-             (url "https://github.com/shurcooL/sanitized_anchor_name";)
-             (commit (string-append "v" version))))
-       (file-name (git-file-name name version))
-       (sha256
-        (base32
-         "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f"))))
-    (build-system go-build-system)
-    (arguments
-     '(#:import-path "github.com/shurcooL/sanitized_anchor_name"))
-    (home-page "https://github.com/shurcooL/sanitized_anchor_name";)
-    (synopsis "Create sanitized anchor names")
-    (description "This package provides a Go program for creating sanitized
-anchor names.")
-    (license license:expat)))
-
 (define-public go-github-com-cention-sany-utf7
   (package
     (name "go-github-com-cention-sany-utf7")

Reply via email to