aboutsummaryrefslogtreecommitdiff
path: root/battering/packages/golang-xyz.scm
diff options
context:
space:
mode:
authorHanketsu <hanketsu@egregore.fun>2025-01-31 22:38:19 +0100
committerHanketsu <hanketsu@egregore.fun>2025-02-01 17:47:16 +0100
commit935986c38291427407441daf9384f416777eae73 (patch)
tree4f900bba2563c77ef2cd45bc25600e2b87b94b4b /battering/packages/golang-xyz.scm
parentd9984de3f24f68e4b186d790499d210cc772b9cc (diff)
battering: Add go-github-com-varlink-go.
* battering/packages/golang-xyz.scm (go-github-com-varlink-go): New variable.
Diffstat (limited to 'battering/packages/golang-xyz.scm')
-rw-r--r--battering/packages/golang-xyz.scm23
1 files changed, 23 insertions, 0 deletions
diff --git a/battering/packages/golang-xyz.scm b/battering/packages/golang-xyz.scm
index e803add..0a8e9b4 100644
--- a/battering/packages/golang-xyz.scm
+++ b/battering/packages/golang-xyz.scm
@@ -67,3 +67,26 @@
@@url{https://github.com/iovisor/bcc,bcc framework} as well as low-level
routines to load and use @code{eBPF} programs from .elf files.")
(license license:asl2.0)))
+
+(define-public go-github-com-varlink-go
+ (package
+ (name "go-github-com-varlink-go")
+ (version "0.4.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/varlink/go")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1bhpi18xrmf5in2m4y6wj2q05rxk9m219knk9dj3bin1aj1dlf56"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/varlink/go/varlink"
+ #:unpack-path "github.com/varlink/go"))
+ (home-page "https://github.com/varlink/go")
+ (synopsis "Varlink implementation in Go")
+ (description "This is an implementation of the varlink protocol in golang.")
+ (license license:asl2.0)))