diff options
author | Hanketsu <hanketsu@egregore.fun> | 2025-01-31 22:38:19 +0100 |
---|---|---|
committer | Hanketsu <hanketsu@egregore.fun> | 2025-06-13 00:04:21 +0200 |
commit | cb5524e53a179b6860d0ad8d2af7f5fa98824405 (patch) | |
tree | 8966acb92dc5d799183b1a2103c61edf3f3af357 /battering/packages/golang-xyz.scm | |
parent | 12a56c46a00ac9c521e53dd9f4d4968c638da876 (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.scm | 23 |
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))) |