diff options
author | David Thompson <davet@gnu.org> | 2025-06-02 12:25:59 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2025-06-17 15:17:17 +0200 |
commit | a16b83b9d2aa04d641d09336b9302c0aee5818b6 (patch) | |
tree | 7d1803fd661e31b8d3a138758093f20fd4740d91 /gnu/packages/golang-xyz.scm | |
parent | 84cb01dc44b90d475592b2ecde7ea8d9ccf72df9 (diff) |
gnu: Add go-github-com-andreaskoch-go-fswatch.
* gnu/packages/golang-xyz.scm (go-github-com-andreaskoch-go-fswatch): New variable.
Co-authored-by: Ludovic Courtès <ludo@gnu.org>
Change-Id: Ib9b87c5851a3bebd7c55419930db32d130620622
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 715dcf3ddf..58bd72e8f9 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -1336,6 +1336,30 @@ JSONMarshal/JSONUnmarshal to store/reload the Bloom filter.") ;; Dual licence: MIT (Expat) and CC0 1.0 UNIVERSAL. (license license:expat))) +(define-public go-github-com-andreaskoch-go-fswatch + (package + (name "go-github-com-andreaskoch-go-fswatch") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/andreaskoch/go-fswatch") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0caikz1bbb2g9w8hyk7qvwixsy8dvc2gism10927q2cc1100mlr2")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/andreaskoch/go-fswatch")) + (home-page "https://github.com/andreaskoch/go-fswatch") + (synopsis "File system watch library") + (description + "fswatch is a go library for watching file system changes to @emph{does not} +depend on inotify.") + (license license:bsd-3))) + (define-public go-github-com-anmitsu-go-shlex (package (name "go-github-com-anmitsu-go-shlex") |