Skip to content
Snippets Groups Projects
Commit 24b5c463 authored by Andreas Enge's avatar Andreas Enge
Browse files

gnu: Add dbus-glib.

* gnu/packages/glib.scm (dbus-glib): New variable.
parent d9c4b6e9
No related branches found
No related tags found
No related merge requests found
...@@ -185,3 +185,28 @@ (define-public intltool ...@@ -185,3 +185,28 @@ (define-public intltool
Merge back the translations from .po files into .xml, .desktop and Merge back the translations from .po files into .xml, .desktop and
oaf files. This merge step will happen at build resp. installation time.") oaf files. This merge step will happen at build resp. installation time.")
(license license:gpl2+))) (license license:gpl2+)))
(define-public dbus-glib
(package
(name "dbus-glib")
(version "0.100.2")
(source (origin
(method url-fetch)
(uri
(string-append "http://dbus.freedesktop.org/releases/dbus-glib/dbus-glib-"
version ".tar.gz"))
(sha256
(base32
"1ibav91yg70f2l3l18cr0hf4mna1h9d4mrg0c60w4l8zjbd45fx5"))))
(build-system gnu-build-system)
(inputs
`(("dbus" ,dbus)
("expat" ,expat)
("glib" ,glib)
("pkg-config" ,pkg-config)))
(home-page "http://dbus.freedesktop.org/doc/dbus-glib/")
(synopsis "D-Bus GLib bindings")
(description
"GLib bindings for D-Bus. The package is obsolete and superseded
by GDBus included in Glib.")
(license license:gpl2))) ; or Academic Free License 2.1
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment