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-keybase-dbus.

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

Change-Id: I0a30af511d99f24dae69f82dccd788322b944a8d
This commit is contained in:
Sharlatan Hellseher 2024-12-24 22:47:40 +00:00
parent a2e9b71c19
commit ffbf9aa7e0
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -6545,6 +6545,37 @@ word-splitting rules.")
(home-page "https://github.com/kballard/go-shellquote") (home-page "https://github.com/kballard/go-shellquote")
(license license:expat)))) (license license:expat))))
(define-public go-github-com-keybase-dbus
(package
(name "go-github-com-keybase-dbus")
(version "0.0.0-20220506165403-5aa21ea2c23a")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/keybase/dbus")
(commit (go-version->git-ref version))))
(file-name (git-file-name name version))
(sha256
(base32 "0ihicxqq685jy47dw522b5c7b8vcikay0xph6y55jcas3m3zj1lj"))))
(build-system go-build-system)
(arguments
(list
#:tests? #f; tests require running D-bus
#:import-path "github.com/keybase/dbus"))
(home-page "https://github.com/keybase/dbus")
(synopsis "Native Go bindings for D-Bus")
(description
"Package dbus implements bindings to the D-Bus message bus system.
Features:
@itemize
@item complete native implementation of the D-Bus message protocol
@item go-like API (channels for signals / asynchronous method calls,
Goroutine-safe connections)
@item subpackages that help with the introspection / property interfaces
@end itemize")
(license license:bsd-2)))
(define-public go-github-com-keybase-go-ps (define-public go-github-com-keybase-go-ps
(package (package
(name "go-github-com-keybase-go-ps") (name "go-github-com-keybase-go-ps")