mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05:00
gnu: Add libdbusmenu-qt.
* gnu/packages/lxqt.scm (libdbusmenu-qt): New variable. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
This commit is contained in:
parent
d58aefdf06
commit
64fac507dd
1 changed files with 30 additions and 0 deletions
|
@ -29,6 +29,7 @@ (define-module (gnu packages lxqt)
|
||||||
#:use-module (guix utils)
|
#:use-module (guix utils)
|
||||||
#:use-module (guix build-system cmake)
|
#:use-module (guix build-system cmake)
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
|
#:use-module (gnu packages documentation)
|
||||||
#:use-module (gnu packages freedesktop)
|
#:use-module (gnu packages freedesktop)
|
||||||
#:use-module (gnu packages glib)
|
#:use-module (gnu packages glib)
|
||||||
#:use-module (gnu packages kde-frameworks)
|
#:use-module (gnu packages kde-frameworks)
|
||||||
|
@ -38,6 +39,35 @@ (define-module (gnu packages lxqt)
|
||||||
#:use-module (gnu packages qt)
|
#:use-module (gnu packages qt)
|
||||||
#:use-module (gnu packages xorg))
|
#:use-module (gnu packages xorg))
|
||||||
|
|
||||||
|
(define-public libdbusmenu-qt
|
||||||
|
(package
|
||||||
|
(name "libdbusmenu-qt")
|
||||||
|
(version "0.9.3+16.04.20160218-0ubuntu1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
;; Download from github rather than launchpad beacuse launchpad trunk
|
||||||
|
;; tarball hash is not deterministic.
|
||||||
|
(uri (string-append "https://github.com/unity8-team/" name
|
||||||
|
"/archive/" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "0abwyggnpg50sa9cxphscp5zdkv9nxqnlav55vj21df6q1h3jb5w"))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))))
|
||||||
|
(build-system cmake-build-system)
|
||||||
|
(arguments
|
||||||
|
;; XXX: Tests require a dbus session and some icons.
|
||||||
|
'(#:tests? #f))
|
||||||
|
(native-inputs
|
||||||
|
`(("doxygen" ,doxygen)))
|
||||||
|
(inputs
|
||||||
|
`(("qtbase" ,qtbase)))
|
||||||
|
(home-page "https://launchpad.net/libdbusmenu-qt")
|
||||||
|
(synopsis "Qt implementation of the DBusMenu spec")
|
||||||
|
(description "This library provides a Qt implementation of the DBusMenu
|
||||||
|
protocol. The DBusMenu protocol makes it possible for applications to export
|
||||||
|
and import their menus over DBus.")
|
||||||
|
(license lgpl2.1+)))
|
||||||
|
|
||||||
(define-public liblxqt
|
(define-public liblxqt
|
||||||
(package
|
(package
|
||||||
(name "liblxqt")
|
(name "liblxqt")
|
||||||
|
|
Loading…
Reference in a new issue