diff options
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))) |