sharlatan pushed a commit to branch go-team
in repository guix.
commit a78efa980ff8b43816bce00d2177154ffba1fd3b
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Feb 20 15:12:31 2025 +0000
gnu: Add go-github-com-jorropo-jsync.
* gnu/packages/golang-xyz.scm (go-github-com-jorropo-jsync): New variable.
Change-Id: I7d832b9ae13c17022c1db9ab7d654546f2464efb
---
gnu/packages/golang-xyz.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 12263261b8..cd6274411e 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -9191,6 +9191,31 @@ https://github.com/bkeepers/dotenv.")
interface instead.")
(license license:asl2.0)))
+(define-public go-github-com-jorropo-jsync
+ (package
+ (name "go-github-com-jorropo-jsync")
+ (version "1.0.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Jorropo/jsync")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1s1nn6wy6ymvvawyly84y8bx1vl9k46awnvd000q6ndrvgs1clxg"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/Jorropo/jsync"))
+ (home-page "https://github.com/Jorropo/jsync")
+ (synopsis "Synchronisation implementation wrapper for Go std @code{sync}")
+ (description
+ "jsync is a package that implements various synchronisation helpers that
+are missing from @code{sync}. It does not and will not rely on golinkname to
+be portable.")
+ (license (list license:asl2.0 license:expat))))
+
(define-public go-github-com-josharian-intern
(package
(name "go-github-com-josharian-intern")