mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add obconf-qt.
* gnu/packages/lxqt.scm (obconf-qt): New variable. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
This commit is contained in:
parent
32b74b7028
commit
31fd62c8ca
1 changed files with 43 additions and 0 deletions
|
@ -35,12 +35,16 @@ (define-module (gnu packages lxqt)
|
|||
#:use-module (gnu packages documentation)
|
||||
#:use-module (gnu packages freedesktop)
|
||||
#:use-module (gnu packages glib)
|
||||
#:use-module (gnu packages gnome)
|
||||
#:use-module (gnu packages gtk)
|
||||
#:use-module (gnu packages image)
|
||||
#:use-module (gnu packages kde)
|
||||
#:use-module (gnu packages kde-frameworks)
|
||||
#:use-module (gnu packages linux)
|
||||
#:use-module (gnu packages perl)
|
||||
#:use-module (gnu packages lxde)
|
||||
#:use-module (gnu packages maths)
|
||||
#:use-module (gnu packages openbox)
|
||||
#:use-module (gnu packages pcre)
|
||||
#:use-module (gnu packages photo)
|
||||
#:use-module (gnu packages pkg-config)
|
||||
|
@ -49,6 +53,7 @@ (define-module (gnu packages lxqt)
|
|||
#:use-module (gnu packages qt)
|
||||
#:use-module (gnu packages textutils)
|
||||
#:use-module (gnu packages xdisorg)
|
||||
#:use-module (gnu packages xml)
|
||||
#:use-module (gnu packages xorg))
|
||||
|
||||
|
||||
|
@ -972,6 +977,44 @@ (define-public lximage-qt
|
|||
image viewer.")
|
||||
(license license:lgpl2.1+)))
|
||||
|
||||
(define-public obconf-qt
|
||||
(package
|
||||
(name "obconf-qt")
|
||||
(version "0.13.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/lxqt/" name "/releases/download/"
|
||||
version "/" name "-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32 "1fbzn1p2mdvn8dcbavmd1imrvkph2jfssrlw8l26qz6qk8qlmhnf"))))
|
||||
(build-system cmake-build-system)
|
||||
(inputs
|
||||
`(("imlib2" ,imlib2)
|
||||
("libsm" ,libsm)
|
||||
("librsvg" ,librsvg)
|
||||
("libxft" ,libxft)
|
||||
("libxml2" ,libxml2)
|
||||
("openbox" ,openbox)
|
||||
("pango" ,pango)
|
||||
("pcre" ,pcre)
|
||||
("qtbase" ,qtbase)
|
||||
("qtx11extras" ,qtx11extras)))
|
||||
(native-inputs
|
||||
`(("lxqt-build-tools" ,lxqt-build-tools)
|
||||
("pkg-config" ,pkg-config)
|
||||
("qttools" ,qttools)))
|
||||
(arguments
|
||||
'(#:tests? #f ; no tests
|
||||
#:configure-flags
|
||||
;; TODO: prefetch translations files from 'lxqt-l10n'.
|
||||
'("-DPULL_TRANSLATIONS=NO")))
|
||||
(home-page "https://lxqt.org/")
|
||||
(synopsis "Openbox configuration tool")
|
||||
(description "ObConf-Qt is a Qt port of ObConf, a configuration editor for
|
||||
window manager OpenBox.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public pavucontrol-qt
|
||||
(package
|
||||
(name "pavucontrol-qt")
|
||||
|
|
Loading…
Reference in a new issue