diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-20 15:12:31 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-05-26 16:50:15 +0100 |
commit | 95e9f8a27f859ff0493ca183e799215be126d7f5 (patch) | |
tree | ac3697fc2b32a5ae7fe890868b8c85f0a7ac6dfa /gnu/packages/golang-xyz.scm | |
parent | 281af61a62ceed53d8871a745dc348cbf685a8b7 (diff) |
gnu: Add go-github-com-jorropo-jsync.
* gnu/packages/golang-xyz.scm (go-github-com-jorropo-jsync): New variable.
Change-Id: I7d832b9ae13c17022c1db9ab7d654546f2464efb
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index f87fd9d6d7..87500c8ab8 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -9226,6 +9226,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") |