mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add pulseaudio-qt.
* gnu/packages/kde-frameworks.scm (pulseaudio-qt): New public variable.
This commit is contained in:
parent
6701d23236
commit
a5d465e25b
1 changed files with 32 additions and 0 deletions
|
@ -66,6 +66,7 @@ (define-module (gnu packages kde-frameworks)
|
|||
#:use-module (gnu packages perl)
|
||||
#:use-module (gnu packages pkg-config)
|
||||
#:use-module (gnu packages polkit)
|
||||
#:use-module (gnu packages pulseaudio)
|
||||
#:use-module (gnu packages python)
|
||||
#:use-module (gnu packages python-xyz)
|
||||
#:use-module (gnu packages qt)
|
||||
|
@ -1293,6 +1294,37 @@ (define-public prison
|
|||
provides uniform access to generation of barcodes with data.")
|
||||
(license license:lgpl2.1+)))
|
||||
|
||||
(define-public pulseaudio-qt
|
||||
(package
|
||||
(name "pulseaudio-qt")
|
||||
(version "1.2")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://download.kde.org/stable/pulseaudio-qt"
|
||||
"/pulseaudio-qt-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1i0ql68kxv9jxs24rsd3s7jhjid3f2fq56fj4wbp16zb4wd14099"))))
|
||||
(build-system cmake-build-system)
|
||||
(native-inputs
|
||||
`(("extra-cmake-modules" ,extra-cmake-modules)
|
||||
("pkg-config" ,pkg-config)))
|
||||
(inputs
|
||||
`(("glib" ,glib)
|
||||
("pulseaudio" ,pulseaudio)
|
||||
("qtdeclarative" ,qtdeclarative)
|
||||
("qtbase" ,qtbase)))
|
||||
(home-page "https://invent.kde.org/libraries/pulseaudio-qt/")
|
||||
(synopsis "Qt bindings for PulseAudio")
|
||||
(description
|
||||
"pulseaudio-qt is a Qt-style wrapper for libpulse. It allows querying
|
||||
and manipulation of various PulseAudio objects such as @code{Sinks},
|
||||
@code{Sources} and @code{Streams}. It does not wrap the full feature set of
|
||||
libpulse.")
|
||||
;; User can choose between LGPL version 2.1 or 3.0; or
|
||||
;; "any later version accepted by the membership of KDE e.V".
|
||||
(license (list license:lgpl2.1 license:lgpl3))))
|
||||
|
||||
(define-public qqc2-desktop-style
|
||||
(package
|
||||
(name "qqc2-desktop-style")
|
||||
|
|
Loading…
Reference in a new issue