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

commit c8fe6d4c66f433b11c4c6395b2436466d8810540
Author: Sharlatan Hellseher <sharlata...@gmail.com>
AuthorDate: Sat Feb 22 09:45:14 2025 +0000

    gnu: go-github-com-willscott-goturn: Move to golang-web.
    
    * gnu/packages/golang.scm (go-github-com-willscott-goturn): Move from
    here ...
    * gnu/packages/golang-web.scm: ... to here.
    
    Change-Id: I64745a4804b41101f6c6b3152d3cb04081dc6315
---
 gnu/packages/golang-web.scm | 26 ++++++++++++++++++++++++++
 gnu/packages/golang.scm     | 25 -------------------------
 2 files changed, 26 insertions(+), 25 deletions(-)

diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 70522c68f5..ec6f75f1a7 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -8860,6 +8860,32 @@ https://github.com/restic/restic project.")
 netmasks.")
     (license license:expat)))
 
+(define-public go-github-com-willscott-goturn
+  (package
+    (name "go-github-com-willscott-goturn")
+    (version "0.0.0-20170802220503-19f41278d0c9")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/willscott/goturn";)
+             (commit (go-version->git-ref version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0zwvhfznr84ayzknn9flh65nvqjsixisgy9fkhz2jlahl1ldqcq7"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:tests? #f ; tests are broken on a newer go, starting from 1.17.
+      #:import-path "github.com/willscott/goturn"))
+    (home-page "https://github.com/willscott/goturn";)
+    (synopsis "Go TURN dialer")
+    (description
+     "GoTURN is a library providing a Go interface compatible with the
+golang proxy package which connects through a TURN relay.  It provides parsing
+and encoding support for STUN and TURN protocols.")
+    (license license:bsd-3)))
+
 (define-public go-github-com-wlynxg-anet
   (package
     (name "go-github-com-wlynxg-anet")
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 81c61ff39e..4be9db790a 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1087,31 +1087,6 @@ in the style of communicating sequential processes 
(@dfn{CSP}).")
 (define-public go-std-1.22 (make-go-std go-1.22))
 (define-public go-std-1.23 (make-go-std go-1.23))
 
-(define-public go-github-com-willscott-goturn
-    (package
-      (name "go-github-com-willscott-goturn")
-      (version "0.0.0-20170802220503-19f41278d0c9")
-      (source
-       (origin
-         (method git-fetch)
-         (uri
-          (git-reference
-           (url "https://github.com/willscott/goturn";)
-           (commit (go-version->git-ref version))))
-         (file-name (git-file-name name version))
-         (sha256
-          (base32 "0zwvhfznr84ayzknn9flh65nvqjsixisgy9fkhz2jlahl1ldqcq7"))))
-      (build-system go-build-system)
-      (arguments
-       `(#:tests? #f ; tests are broken on a newer go, starting from 1.17.
-         #:import-path "github.com/willscott/goturn"))
-      (home-page "https://github.com/willscott/goturn";)
-      (synopsis "Go TURN dialer")
-      (description "GoTURN is a library providing a Go interface compatible 
with
-the golang proxy package which connects through a TURN relay.  It provides
-parsing and encoding support for STUN and TURN protocols.")
-      (license license:bsd-3)))
-
 (define-public lyrebird
   (package
     (name "lyrebird")

Reply via email to