1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-14 19:10:49 +02:00

gnu: Add go-github-com-jorropo-jsync.

* gnu/packages/golang-xyz.scm (go-github-com-jorropo-jsync): New variable.

Change-Id: I7d832b9ae13c17022c1db9ab7d654546f2464efb
This commit is contained in:
Sharlatan Hellseher 2025-02-20 15:12:31 +00:00
parent 281af61a62
commit 95e9f8a27f
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -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")