mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 19:19:20 -05:00
gnu: Add liblxqt.
* gnu/packages/lxqt.scm (liblxqt): New variable.
This commit is contained in:
parent
4a8276704f
commit
6bb5a8a1c1
1 changed files with 30 additions and 0 deletions
|
@ -23,6 +23,7 @@ (define-module (gnu packages lxqt)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix utils)
|
#:use-module (guix utils)
|
||||||
#:use-module (guix build-system cmake)
|
#:use-module (guix build-system cmake)
|
||||||
|
#:use-module (gnu packages kde-frameworks)
|
||||||
#:use-module (gnu packages pkg-config)
|
#:use-module (gnu packages pkg-config)
|
||||||
#:use-module (gnu packages qt))
|
#:use-module (gnu packages qt))
|
||||||
|
|
||||||
|
@ -56,3 +57,32 @@ (define-public libqtxdg
|
||||||
(description "Libqtxdg implements the freedesktop.org xdg specifications
|
(description "Libqtxdg implements the freedesktop.org xdg specifications
|
||||||
in Qt.")
|
in Qt.")
|
||||||
(license lgpl2.1+)))
|
(license lgpl2.1+)))
|
||||||
|
|
||||||
|
(define-public liblxqt
|
||||||
|
(package
|
||||||
|
(name "liblxqt")
|
||||||
|
(version "0.9.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri
|
||||||
|
(string-append "https://github.com/lxde/" name "/releases/download/"
|
||||||
|
version "/" name "-" version ".tar.xz"))
|
||||||
|
(uri
|
||||||
|
(string-append "https://github.com/lxde/" name "/archive/"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz")) (sha256
|
||||||
|
(base32
|
||||||
|
"0mbl3qc0yfgfsndqrw8vg8k5irsy0pg2wrad8nwv0aphphd4n7rg"))))
|
||||||
|
(build-system cmake-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f))
|
||||||
|
(native-inputs `(("pkg-config" ,pkg-config)))
|
||||||
|
(inputs
|
||||||
|
`(("kwindowsystem" ,kwindowsystem)
|
||||||
|
("libqtxdg" ,libqtxdg)))
|
||||||
|
(home-page "http://lxqt.org/")
|
||||||
|
(synopsis "Core utility library for all LXQt components")
|
||||||
|
(description "liblxqt provides the basic libraries shared by the
|
||||||
|
components of the LxQt desktop environment.")
|
||||||
|
(license lgpl2.1+)))
|
||||||
|
|
Loading…
Reference in a new issue