diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-02-07 23:48:02 +0000 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-02-15 14:17:46 +0100 |
| commit | 6c01e7e77e9acf8b243fe747f5ac77e862393f4f (patch) | |
| tree | 9dc1bb866f1423c3528c5ed156f95b4bc15d019b | |
| parent | 5a54a6f57a683cba486fda40ee699449b1eb8d89 (diff) | |
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
| -rw-r--r-- | gnu/packages/golang-xyz.scm | 27 | ||||
| -rw-r--r-- | 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 a554ddfbec6..61e08fbc671 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -23087,6 +23087,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 b4f64ad88e3..e1cee896ae1 100644 --- a/gnu/packages/syncthing.scm +++ b/gnu/packages/syncthing.scm @@ -221,30 +221,3 @@ notification area icon for Syncthing. Supported Syncthing features: @item Editing daemon settings @end itemize\n") (license gpl2)))) - -(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))) |
