summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Buddelmeijer <hugo@buddelmeijer.nl>2026-08-24 09:50:24 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-08-26 00:31:24 +0100
commit743d8a1ec0ecfc4237b1957370a8aed804c9fb61 (patch)
tree700d41a94225386017aa9d4cea466b7be8a94a58
parenteb4d5028b0357b87b26e809cd41680f6cacd798c (diff)
gnu: Add go-github-com-sgtdi-fswatcher.
* gnu/packages/golang-xyz.scm (go-github-com-sgtdi-fswatcher): New variable. Relates-to: guix/guix!10772 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/golang-xyz.scm29
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 1c991071784..11a62b71758 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -28209,6 +28209,35 @@ synchronizing plain text:
28209 "Go-Daemon is a library for writing system daemons in Go.") 28209 "Go-Daemon is a library for writing system daemons in Go.")
28210 (license license:expat))) 28210 (license license:expat)))
28211 28211
28212(define-public go-github-com-sgtdi-fswatcher
28213 (package
28214 (name "go-github-com-sgtdi-fswatcher")
28215 (version "1.3.0")
28216 (source
28217 (origin
28218 (method git-fetch)
28219 (uri (git-reference
28220 (url "https://github.com/sgtdi/fswatcher")
28221 (commit (string-append "v" version))))
28222 (file-name (git-file-name name version))
28223 (sha256
28224 (base32 "134swn5x2g0dn8nn48f66r49h5mxfl8yrwrlmkargl25mi7yw383"))))
28225 (build-system go-build-system)
28226 (arguments
28227 (list
28228 #:import-path "github.com/sgtdi/fswatcher"))
28229 (native-inputs
28230 (list go-github-com-stretchr-testify))
28231 (propagated-inputs
28232 (list go-golang-org-x-sys))
28233 (home-page "https://github.com/sgtdi/fswatcher")
28234 (synopsis "File watcher for Go with built-in debouncing and filtering")
28235 (description
28236 "FSWatcher is a robust and concurrent file system watcher for Go. It
28237provides a simple and powerful API to monitor directories for file system
28238changes, designed for high-performance applications and development tools.")
28239 (license license:expat)))
28240
28212(define-public go-github-com-shamaton-msgpack-v3 28241(define-public go-github-com-shamaton-msgpack-v3
28213 (package 28242 (package
28214 (name "go-github-com-shamaton-msgpack-v3") 28243 (name "go-github-com-shamaton-msgpack-v3")