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

commit e9b5439fe78a58fc76ffd2b454bfea19583a4c80
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Feb 7 23:48:02 2026 +0000

    gnu: go-github-com-syncthing-notify: Move to golang-xyz.
    
    * gnu/packages/syncthing.scm (go-github-com-syncthing-notify): Move from
    here ...
    * gnu/packages/golang-xyz.scm: ... to here.
    
    Change-Id: I344ff479acf5690c888e9048c0456cd3e3f2bceb
---
 gnu/packages/golang-xyz.scm | 27 +++++++++++++++++++++++++++
 gnu/packages/syncthing.scm  | 27 ---------------------------
 2 files changed, 27 insertions(+), 27 deletions(-)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 616d139185..83b5db2811 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -22532,6 +22532,33 @@ Porter2 stemmer}.  It is written completely using 
finite state machines to do
 suffix comparison, rather than the string-based or tree-based approaches.")
     (license license:asl2.0)))
 
+(define-public go-github-com-syncthing-notify
+  (package
+    (name "go-github-com-syncthing-notify")
+    (version "0.0.0-20250528144937-c7027d4f7465")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/syncthing/notify";)
+              (commit (go-version->git-ref version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0vg9w1anzg8v3ikm3h81wg8njhp4aq60sj4p25zg0glw9nk14zd5"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:parallel-tests? #f
+      #:import-path "github.com/syncthing/notify"))
+    (propagated-inputs
+     (list go-golang-org-x-sys))
+    (home-page "https://github.com/syncthing/notify";)
+    (synopsis "File system event notification library")
+    (description
+     "This package provides @code{notify}, a file system event notification
+library in Go.")
+    (license license:expat)))
+
 (define-public go-github-com-syndtr-gocapability
   (package
     (name "go-github-com-syndtr-gocapability")
diff --git a/gnu/packages/syncthing.scm b/gnu/packages/syncthing.scm
index 60c950a1d1..f68a267f6a 100644
--- a/gnu/packages/syncthing.scm
+++ b/gnu/packages/syncthing.scm
@@ -135,30 +135,3 @@ Protocol.")
        ;; The hashing code greatly benefits from newer architecture support.
        (tunable? . #t)))
     (license mpl2.0)))
-
-(define-public go-github-com-syncthing-notify
-  (package
-    (name "go-github-com-syncthing-notify")
-    (version "0.0.0-20210616190510-c6b7342338d2")
-    (source
-     (origin
-       (method git-fetch)
-       (uri (git-reference
-             (url "https://github.com/syncthing/notify";)
-             (commit (go-version->git-ref version))))
-       (file-name (git-file-name name version))
-       (sha256
-        (base32 "1mw7kxj0smcf4vgpxai7m9vncdx2d3blxqy13hffvza0fxnwkv37"))))
-    (build-system go-build-system)
-    (arguments
-     (list
-      #:parallel-tests? #f
-      #:import-path "github.com/syncthing/notify"))
-    (propagated-inputs
-     (list go-golang-org-x-sys))
-    (home-page "https://github.com/syncthing/notify";)
-    (synopsis "File system event notification library")
-    (description
-     "This package provides @code{notify}, a file system event notification
-library in Go.")
-    (license expat)))

Reply via email to