gnu: lxqt.scm: Add prefix to licenses imports.

* gnu/packages/lxqt.scm: Import (guix licenses) with prefix "license:".

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
This commit is contained in:
Meiyo Peng 2018-10-18 13:32:55 +08:00 committed by 宋文武
parent 34e08de321
commit a6b941ddd1
No known key found for this signature in database
GPG Key ID: 26525665AE727D37
1 changed files with 16 additions and 16 deletions

View File

@ -24,7 +24,7 @@
(define-module (gnu packages lxqt) (define-module (gnu packages lxqt)
#:use-module (guix download) #:use-module (guix download)
#:use-module ((guix licenses)) #:use-module ((guix licenses) #:prefix license:)
#: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)
@ -75,7 +75,7 @@
(description "This library provides a Qt implementation of the DBusMenu (description "This library provides a Qt implementation of the DBusMenu
protocol. The DBusMenu protocol makes it possible for applications to export protocol. The DBusMenu protocol makes it possible for applications to export
and import their menus over DBus.") and import their menus over DBus.")
(license lgpl2.1+))) (license license:lgpl2.1+)))
(define-public libfm-qt (define-public libfm-qt
(package (package
@ -111,7 +111,7 @@ and import their menus over DBus.")
(synopsis "Qt binding for libfm") (synopsis "Qt binding for libfm")
(description "libfm-qt is the Qt port of libfm, a library providing (description "libfm-qt is the Qt port of libfm, a library providing
components to build desktop file managers which belongs to LXDE.") components to build desktop file managers which belongs to LXDE.")
(license lgpl2.1+))) (license license:lgpl2.1+)))
(define-public liblxqt (define-public liblxqt
(package (package
@ -153,7 +153,7 @@ components to build desktop file managers which belongs to LXDE.")
(synopsis "Core utility library for all LXQt components") (synopsis "Core utility library for all LXQt components")
(description "liblxqt provides the basic libraries shared by the (description "liblxqt provides the basic libraries shared by the
components of the LXQt desktop environment.") components of the LXQt desktop environment.")
(license lgpl2.1+))) (license license:lgpl2.1+)))
(define-public libqtxdg (define-public libqtxdg
(package (package
@ -188,7 +188,7 @@ components of the LXQt desktop environment.")
(synopsis "Qt implementation of freedesktop.org xdg specifications") (synopsis "Qt implementation of freedesktop.org xdg specifications")
(description "Libqtxdg implements the freedesktop.org xdg specifications (description "Libqtxdg implements the freedesktop.org xdg specifications
in Qt.") in Qt.")
(license lgpl2.1+))) (license license:lgpl2.1+)))
(define-public libstatgrab (define-public libstatgrab
(package (package
@ -212,7 +212,7 @@ in Qt.")
(description "libstatgrab is a library that provides cross platform access (description "libstatgrab is a library that provides cross platform access
to statistics about the system on which it's run.") to statistics about the system on which it's run.")
;; Libraries are under LGPL2.1+, and programs under GPLv2+. ;; Libraries are under LGPL2.1+, and programs under GPLv2+.
(license gpl2+))) (license license:gpl2+)))
(define-public libsysstat (define-public libsysstat
(package (package
@ -235,7 +235,7 @@ to statistics about the system on which it's run.")
(synopsis "Library used to query system info and statistics") (synopsis "Library used to query system info and statistics")
(description "libsysstat is a library to query system information like CPU (description "libsysstat is a library to query system information like CPU
and memory usage or network traffic.") and memory usage or network traffic.")
(license lgpl2.1+))) (license license:lgpl2.1+)))
(define-public lxqt-about (define-public lxqt-about
(package (package
@ -268,7 +268,7 @@ and memory usage or network traffic.")
(synopsis "Provides information about LXQt and the system") (synopsis "Provides information about LXQt and the system")
(description "lxqt-about is a dialogue window providing information about (description "lxqt-about is a dialogue window providing information about
LXQt and the system it's running on.") LXQt and the system it's running on.")
(license lgpl2.1+))) (license license:lgpl2.1+)))
(define-public lxqt-admin (define-public lxqt-admin
(package (package
@ -309,7 +309,7 @@ LXQt and the system it's running on.")
(synopsis "LXQt system administration tool") (synopsis "LXQt system administration tool")
(description "lxqt-admin is providing two GUI tools to adjust settings of (description "lxqt-admin is providing two GUI tools to adjust settings of
the operating system LXQt is running on.") the operating system LXQt is running on.")
(license lgpl2.1+))) (license license:lgpl2.1+)))
(define-public lxqt-build-tools (define-public lxqt-build-tools
(package (package
@ -335,7 +335,7 @@ the operating system LXQt is running on.")
"Lxqt-build-tools is providing several tools needed to build LXQt "Lxqt-build-tools is providing several tools needed to build LXQt
itself as well as other components maintained by the LXQt project.") itself as well as other components maintained by the LXQt project.")
(home-page "https://lxqt.org") (home-page "https://lxqt.org")
(license lgpl2.1+))) (license license:lgpl2.1+)))
(define-public lxqt-globalkeys (define-public lxqt-globalkeys
(package (package
@ -379,7 +379,7 @@ itself as well as other components maintained by the LXQt project.")
(description "lxqt-globalkeys is providing tools to set global keyboard (description "lxqt-globalkeys is providing tools to set global keyboard
shortcuts in LXQt sessions, that is shortcuts which apply to the LXQt session shortcuts in LXQt sessions, that is shortcuts which apply to the LXQt session
as a whole and are not limited to distinct applications.") as a whole and are not limited to distinct applications.")
(license lgpl2.1+))) (license license:lgpl2.1+)))
(define-public lxqt-panel (define-public lxqt-panel
(package (package
@ -436,7 +436,7 @@ as a whole and are not limited to distinct applications.")
(home-page "https://lxqt.org/") (home-page "https://lxqt.org/")
(synopsis "The LXQt desktop panel") (synopsis "The LXQt desktop panel")
(description "lxqt-panel represents the taskbar of LXQt.") (description "lxqt-panel represents the taskbar of LXQt.")
(license lgpl2.1+))) (license license:lgpl2.1+)))
(define-public lxqt-runner (define-public lxqt-runner
(package (package
@ -481,7 +481,7 @@ as a whole and are not limited to distinct applications.")
(synopsis "Tool used to launch programs quickly by typing their names") (synopsis "Tool used to launch programs quickly by typing their names")
(description "lxqt-runner provides a GUI that comes up on the desktop and (description "lxqt-runner provides a GUI that comes up on the desktop and
allows for launching applications or shutting down the system.") allows for launching applications or shutting down the system.")
(license lgpl2.1+))) (license license:lgpl2.1+)))
(define-public lxqt-session (define-public lxqt-session
(package (package
@ -525,7 +525,7 @@ allows for launching applications or shutting down the system.")
(synopsis "Session manager for LXQt") (synopsis "Session manager for LXQt")
(description "lxqt-session provides the standard session manager (description "lxqt-session provides the standard session manager
for the LXQt desktop environment.") for the LXQt desktop environment.")
(license lgpl2.1+))) (license license:lgpl2.1+)))
(define-public lxqt-sudo (define-public lxqt-sudo
(package (package
@ -561,7 +561,7 @@ for the LXQt desktop environment.")
(description "lxqt-sudo is a graphical front-end of commands sudo and su (description "lxqt-sudo is a graphical front-end of commands sudo and su
respectively. As such it enables regular users to launch applications with respectively. As such it enables regular users to launch applications with
permissions of other users including root.") permissions of other users including root.")
(license lgpl2.1+))) (license license:lgpl2.1+)))
(define-public pcmanfm-qt (define-public pcmanfm-qt
(package (package
@ -600,4 +600,4 @@ permissions of other users including root.")
(synopsis "File manager and desktop icon manager") (synopsis "File manager and desktop icon manager")
(description "PCManFM-Qt is the Qt port of PCManFM, the file manager of (description "PCManFM-Qt is the Qt port of PCManFM, the file manager of
LXDE.") LXDE.")
(license lgpl2.1+))) (license license:lgpl2.1+)))