diff options
author | Sharlatan Hellseher <[email protected]> | 2025-01-24 14:07:42 +0000 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2025-01-24 14:07:42 +0000 |
commit | 232875beb72ee88a0ce078f9adff3336c7eae514 (patch) | |
tree | 7dc119c35c17db1b4bbbcc9a64cf28baa45b4cfb | |
parent | b5ff25fc070bdcec22f0fcba3fee83045bc7b688 (diff) |
gnu: go-github-com-syncthing-notify: Update to 0.0.0-20210616190510-c6b7342338d2.
* gnu/packages/syncthing.scm (go-github-com-syncthing-notify): Update to 0.0.0-20210616190510-c6b7342338d2.
Change-Id: I3e216523dd714f35f22104a0c597c167bf9333ad
-rw-r--r-- | gnu/packages/syncthing.scm | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gnu/packages/syncthing.scm b/gnu/packages/syncthing.scm index 9e65e648b4..cfe9daf0a3 100644 --- a/gnu/packages/syncthing.scm +++ b/gnu/packages/syncthing.scm @@ -213,20 +213,18 @@ notification area icon for Syncthing. Supported Syncthing features: (deprecated-package "qsyncthingtray" syncthing-gtk)) (define-public go-github-com-syncthing-notify - (let ((commit "69c7a957d3e261f9744f46b3dd4d608d8480ad90") - (revision "5")) (package (name "go-github-com-syncthing-notify") - (version (git-version "0.0.0" revision commit)) + (version "0.0.0-20210616190510-c6b7342338d2") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/syncthing/notify") - (commit commit))) + (commit (go-version->git-ref version)))) (file-name (git-file-name name version)) (sha256 (base32 - "1mmdzyfnmjabyhbipl4bggw4w5nlxyyjp0d93qd824kj07kmsr1f")))) + "1mw7kxj0smcf4vgpxai7m9vncdx2d3blxqy13hffvza0fxnwkv37")))) (build-system go-build-system) (arguments '(#:import-path "github.com/syncthing/notify")) @@ -236,4 +234,4 @@ notification area icon for Syncthing. Supported Syncthing features: (description "This package provides @code{notify}, a file system event notification library in Go.") (home-page "https://github.com/syncthing/notify") - (license expat)))) + (license expat))) |