2019-12-06 14:47:47 -05:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
|
;;; Copyright © 2017, 2019 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
2020-06-17 06:50:05 -04:00
|
|
|
|
;;; Copyright © 2020 Timotej Lazar <timotej.lazar@araneo.si>
|
2022-04-18 12:16:35 -04:00
|
|
|
|
;;; Copyright © 2021, 2022 Efraim Flashner <efraim@flashner.co.il>
|
2022-01-03 18:10:25 -05:00
|
|
|
|
;;; Copyright © 2022 Vinicius Monego <monego@posteo.net>
|
gnu: KDE Multimedia: Update all packages to 21.12.3.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, elisa,
ffmpegthumbs, juk, k3b, kaffeine, kamoso, kmix, kwave,
libkcddb, libkcompactdisc): Update to 21.12.3.
(kid3): Update to 3.9.1.
(kamoso): Remove unneeded configure-flags.
(kuserfeedback): Update to 1.2.0.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-04 03:53:37 -05:00
|
|
|
|
;;; Copyright © 2022 Brendan Tildesley <mail@brendan.scot>
|
2022-07-26 06:11:37 -04:00
|
|
|
|
;;; Copyright © 2022 Petr Hodina <phodina@protonmail.com>
|
2019-12-06 14:47:47 -05:00
|
|
|
|
;;;
|
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
|
;;; your option) any later version.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
|
;;;
|
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
(define-module (gnu packages kde-multimedia)
|
|
|
|
|
#:use-module (guix build-system qt)
|
|
|
|
|
#:use-module (guix download)
|
2022-01-03 18:10:25 -05:00
|
|
|
|
#:use-module (guix git-download)
|
2019-12-06 14:47:47 -05:00
|
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
|
|
|
|
#:use-module (guix packages)
|
|
|
|
|
#:use-module (guix utils)
|
2021-11-26 19:20:45 -05:00
|
|
|
|
#:use-module (guix gexp)
|
2019-12-06 14:47:47 -05:00
|
|
|
|
#:use-module (gnu packages)
|
2019-12-08 12:06:00 -05:00
|
|
|
|
#:use-module (gnu packages audio)
|
2022-07-14 08:44:23 -04:00
|
|
|
|
#:use-module (gnu packages bash)
|
2019-12-08 12:06:00 -05:00
|
|
|
|
#:use-module (gnu packages compression)
|
2019-12-08 11:52:47 -05:00
|
|
|
|
#:use-module (gnu packages cdrom)
|
2022-01-03 18:10:25 -05:00
|
|
|
|
#:use-module (gnu packages docbook)
|
2019-12-06 16:11:19 -05:00
|
|
|
|
#:use-module (gnu packages glib)
|
2019-12-08 12:06:00 -05:00
|
|
|
|
#:use-module (gnu packages gtk)
|
2019-12-06 15:32:08 -05:00
|
|
|
|
#:use-module (gnu packages gnome)
|
2019-12-08 12:08:57 -05:00
|
|
|
|
#:use-module (gnu packages gstreamer)
|
2019-12-06 14:47:47 -05:00
|
|
|
|
#:use-module (gnu packages kde-frameworks)
|
2019-12-06 16:11:19 -05:00
|
|
|
|
#:use-module (gnu packages libcanberra)
|
|
|
|
|
#:use-module (gnu packages linux)
|
2019-12-06 15:21:53 -05:00
|
|
|
|
#:use-module (gnu packages mp3)
|
2019-12-06 15:32:08 -05:00
|
|
|
|
#:use-module (gnu packages music)
|
|
|
|
|
#:use-module (gnu packages pkg-config)
|
2022-01-03 18:10:25 -05:00
|
|
|
|
#:use-module (gnu packages python)
|
2019-12-06 15:32:08 -05:00
|
|
|
|
#:use-module (gnu packages pulseaudio)
|
|
|
|
|
#:use-module (gnu packages qt)
|
2022-01-03 18:10:25 -05:00
|
|
|
|
#:use-module (gnu packages readline)
|
2019-12-06 15:32:08 -05:00
|
|
|
|
#:use-module (gnu packages video)
|
2019-12-06 16:11:19 -05:00
|
|
|
|
#:use-module (gnu packages xiph)
|
2022-01-03 18:10:25 -05:00
|
|
|
|
#:use-module (gnu packages xml)
|
2019-12-06 16:11:19 -05:00
|
|
|
|
#:use-module (gnu packages xorg))
|
2019-12-06 14:47:47 -05:00
|
|
|
|
|
2019-12-08 11:52:47 -05:00
|
|
|
|
(define-public audiocd-kio
|
|
|
|
|
(package
|
|
|
|
|
(name "audiocd-kio")
|
gnu: KDE Multimedia: Update to 22.04.3.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, elisa,
ffmpegthumbs, juk, k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc):
Update to 22.04.3.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-08-02 02:25:05 -04:00
|
|
|
|
(version "22.04.3")
|
2019-12-08 11:52:47 -05:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 10:06:58 -04:00
|
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2019-12-08 11:52:47 -05:00
|
|
|
|
"/src/audiocd-kio-" version ".tar.xz"))
|
|
|
|
|
(sha256
|
gnu: KDE Multimedia: Update to 22.04.3.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, elisa,
ffmpegthumbs, juk, k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc):
Update to 22.04.3.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-08-02 02:25:05 -04:00
|
|
|
|
(base32 "0d6pbsh1fbhwwr2c4kf9b17dhzzx2jsmgamawcp4kn7pw9i7i8ql"))))
|
2019-12-08 11:52:47 -05:00
|
|
|
|
(build-system qt-build-system)
|
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list extra-cmake-modules kdoctools))
|
2019-12-08 11:52:47 -05:00
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list cdparanoia
|
|
|
|
|
flac
|
|
|
|
|
kcmutils
|
|
|
|
|
kconfig
|
|
|
|
|
ki18n
|
|
|
|
|
kio
|
|
|
|
|
libkcddb
|
|
|
|
|
libkcompactdisc
|
|
|
|
|
libvorbis
|
|
|
|
|
phonon
|
|
|
|
|
qtbase-5))
|
2022-07-26 06:11:37 -04:00
|
|
|
|
(home-page "https://apps.kde.org/kio_audiocd/")
|
2019-12-08 11:52:47 -05:00
|
|
|
|
(synopsis "Transparent audio CD integration for applications using the KDE
|
|
|
|
|
Platform")
|
|
|
|
|
(description "KIO AudioCD is a KIO slave that enables KIO-aware
|
|
|
|
|
applications (such as Dolphin or k3b) to access audio and CD text data on the
|
|
|
|
|
audio compact disks. It allows transparent drag and drop conversion of audio
|
|
|
|
|
data into the popular formats and has a configuration System Settings module
|
|
|
|
|
available in the \"Multimedia\" section.
|
|
|
|
|
|
|
|
|
|
This package is part of the KDE multimedia module.")
|
|
|
|
|
(license ;; GPL for programs, FDL for documentation
|
|
|
|
|
(list license:gpl2+ license:fdl1.2+))))
|
|
|
|
|
|
2019-12-06 14:47:47 -05:00
|
|
|
|
(define-public dragon
|
|
|
|
|
(package
|
|
|
|
|
(name "dragon")
|
gnu: KDE Multimedia: Update to 22.04.3.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, elisa,
ffmpegthumbs, juk, k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc):
Update to 22.04.3.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-08-02 02:25:05 -04:00
|
|
|
|
(version "22.04.3")
|
2019-12-06 14:47:47 -05:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 10:06:58 -04:00
|
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2019-12-06 14:47:47 -05:00
|
|
|
|
"/src/dragon-" version ".tar.xz"))
|
|
|
|
|
(sha256
|
gnu: KDE Multimedia: Update to 22.04.3.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, elisa,
ffmpegthumbs, juk, k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc):
Update to 22.04.3.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-08-02 02:25:05 -04:00
|
|
|
|
(base32 "0284shnqwbh1953ym197qaqgjwrnva77zi55lvvykg5cq42x512s"))))
|
2019-12-06 14:47:47 -05:00
|
|
|
|
(build-system qt-build-system)
|
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list extra-cmake-modules kdoctools))
|
2019-12-06 14:47:47 -05:00
|
|
|
|
(inputs
|
2022-07-26 06:15:41 -04:00
|
|
|
|
(list bash-minimal
|
|
|
|
|
kconfig
|
2021-12-13 11:18:24 -05:00
|
|
|
|
kconfigwidgets
|
|
|
|
|
kcoreaddons
|
|
|
|
|
kcrash
|
|
|
|
|
kdbusaddons
|
|
|
|
|
ki18n
|
|
|
|
|
kio
|
|
|
|
|
kjobwidgets
|
|
|
|
|
knotifications
|
|
|
|
|
kparts
|
|
|
|
|
kwidgetsaddons
|
|
|
|
|
kwindowsystem
|
|
|
|
|
kxmlgui
|
2022-02-15 06:21:15 -05:00
|
|
|
|
breeze-icons ; default icon set
|
2021-12-13 11:18:24 -05:00
|
|
|
|
phonon
|
|
|
|
|
phonon-backend-gstreamer
|
gnu: KDE Multimedia: Update all packages to 21.12.3.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, elisa,
ffmpegthumbs, juk, k3b, kaffeine, kamoso, kmix, kwave,
libkcddb, libkcompactdisc): Update to 21.12.3.
(kid3): Update to 3.9.1.
(kamoso): Remove unneeded configure-flags.
(kuserfeedback): Update to 1.2.0.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-04 03:53:37 -05:00
|
|
|
|
gst-plugins-base
|
|
|
|
|
gst-plugins-good
|
2021-12-13 11:18:24 -05:00
|
|
|
|
qtbase-5
|
|
|
|
|
solid))
|
gnu: KDE Multimedia: Update all packages to 21.12.3.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, elisa,
ffmpegthumbs, juk, k3b, kaffeine, kamoso, kmix, kwave,
libkcddb, libkcompactdisc): Update to 21.12.3.
(kid3): Update to 3.9.1.
(kamoso): Remove unneeded configure-flags.
(kuserfeedback): Update to 1.2.0.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-04 03:53:37 -05:00
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-after 'qt-wrap 'gst-wrap
|
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
|
|
|
(let ((out (assoc-ref outputs "out"))
|
|
|
|
|
(gst-plugin-path (getenv "GST_PLUGIN_SYSTEM_PATH")))
|
|
|
|
|
(wrap-program (string-append out "/bin/dragon")
|
|
|
|
|
`("GST_PLUGIN_SYSTEM_PATH" ":" prefix (,gst-plugin-path)))
|
|
|
|
|
#t))))))
|
2022-07-26 06:11:37 -04:00
|
|
|
|
(home-page "https://apps.kde.org/dragonplayer/")
|
2019-12-06 14:47:47 -05:00
|
|
|
|
(synopsis "Simple video player")
|
|
|
|
|
(description "Dragon Player is a multimedia player where the focus is on
|
|
|
|
|
simplicity, instead of features. Dragon Player does one thing, and only one
|
|
|
|
|
thing, which is playing multimedia files. It's simple interface is designed
|
|
|
|
|
not to get in your way and instead empower you to simply play multimedia
|
|
|
|
|
files.
|
|
|
|
|
|
|
|
|
|
This package is part of the KDE multimedia module.")
|
|
|
|
|
(license ;; GPL for programs, FDL for documentation
|
|
|
|
|
(list license:gpl2+ license:fdl1.2+))))
|
2019-12-06 15:21:53 -05:00
|
|
|
|
|
2019-12-08 12:07:18 -05:00
|
|
|
|
(define-public elisa
|
|
|
|
|
(package
|
|
|
|
|
(name "elisa")
|
gnu: KDE Multimedia: Update to 22.04.3.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, elisa,
ffmpegthumbs, juk, k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc):
Update to 22.04.3.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-08-02 02:25:05 -04:00
|
|
|
|
(version "22.04.3")
|
2019-12-08 12:07:18 -05:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
2021-01-04 03:10:26 -05:00
|
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
|
|
|
|
"/src/elisa-" version ".tar.xz"))
|
2019-12-08 12:07:18 -05:00
|
|
|
|
(sha256
|
gnu: KDE Multimedia: Update to 22.04.3.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, elisa,
ffmpegthumbs, juk, k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc):
Update to 22.04.3.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-08-02 02:25:05 -04:00
|
|
|
|
(base32 "1v2h7ayyrv6f6hdkl78x1nrv5x0l6n8dh0xrfm5fnii4f694iik8"))))
|
2019-12-08 12:07:18 -05:00
|
|
|
|
(build-system qt-build-system)
|
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list extra-cmake-modules pkg-config dbus kdoctools
|
|
|
|
|
xorg-server-for-tests))
|
2019-12-08 12:07:18 -05:00
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list kconfig
|
|
|
|
|
baloo
|
|
|
|
|
kconfigwidgets
|
|
|
|
|
kcoreaddons
|
|
|
|
|
kcrash
|
|
|
|
|
kcmutils
|
|
|
|
|
kdbusaddons
|
|
|
|
|
kdeclarative
|
|
|
|
|
kfilemetadata
|
|
|
|
|
ki18n
|
gnu: KDE Multimedia: Update all packages to 21.12.3.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, elisa,
ffmpegthumbs, juk, k3b, kaffeine, kamoso, kmix, kwave,
libkcddb, libkcompactdisc): Update to 21.12.3.
(kid3): Update to 3.9.1.
(kamoso): Remove unneeded configure-flags.
(kuserfeedback): Update to 1.2.0.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-04 03:53:37 -05:00
|
|
|
|
kiconthemes
|
2021-12-13 11:18:24 -05:00
|
|
|
|
kio
|
|
|
|
|
kirigami
|
|
|
|
|
kmediaplayer
|
|
|
|
|
kparts
|
|
|
|
|
kpackage
|
|
|
|
|
kwidgetsaddons
|
|
|
|
|
kxmlgui
|
2022-02-15 06:21:15 -05:00
|
|
|
|
breeze-icons ; default icon set
|
2021-12-13 11:18:24 -05:00
|
|
|
|
phonon
|
|
|
|
|
qtbase-5
|
2022-07-17 21:03:18 -04:00
|
|
|
|
qtdeclarative-5
|
2021-12-13 11:18:24 -05:00
|
|
|
|
qtgraphicaleffects ; not listed as dependency
|
2022-07-17 19:00:48 -04:00
|
|
|
|
qtmultimedia-5
|
2022-07-17 23:47:28 -04:00
|
|
|
|
qtquickcontrols-5
|
2022-07-17 23:49:07 -04:00
|
|
|
|
qtquickcontrols2-5
|
2022-07-17 01:11:46 -04:00
|
|
|
|
qtsvg-5
|
2021-12-13 11:18:24 -05:00
|
|
|
|
qtx11extras
|
|
|
|
|
;; TODO: upnpqt https://gitlab.com/homeautomationqt/upnp-player-qt
|
|
|
|
|
vlc))
|
2019-12-08 12:07:18 -05:00
|
|
|
|
(arguments
|
gnu: KDE Multimedia: Update all packages to 21.12.3.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, elisa,
ffmpegthumbs, juk, k3b, kaffeine, kamoso, kmix, kwave,
libkcddb, libkcompactdisc): Update to 21.12.3.
(kid3): Update to 3.9.1.
(kamoso): Remove unneeded configure-flags.
(kuserfeedback): Update to 1.2.0.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-04 03:53:37 -05:00
|
|
|
|
`(#:tests? #f ;; many tests fail
|
|
|
|
|
#:phases
|
2019-12-08 12:07:18 -05:00
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-before 'check 'start-xorg-server
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
;; The test suite requires a running X server, setting
|
|
|
|
|
;; QT_QPA_PLATFORM=offscreen does not suffice.
|
2021-07-14 08:09:51 -04:00
|
|
|
|
(system "Xvfb :1 -screen 0 640x480x24 &")
|
2019-12-08 12:07:18 -05:00
|
|
|
|
(setenv "DISPLAY" ":1")
|
2021-01-04 03:10:26 -05:00
|
|
|
|
#t))
|
|
|
|
|
(replace 'check
|
|
|
|
|
(lambda* (#:key tests? test-target #:allow-other-keys)
|
|
|
|
|
(when tests?
|
|
|
|
|
(setenv "CTEST_OUTPUT_ON_FAILURE" "1")
|
|
|
|
|
(invoke "dbus-launch" "make" test-target))
|
2019-12-08 12:07:18 -05:00
|
|
|
|
#t)))))
|
2022-07-26 06:11:37 -04:00
|
|
|
|
(home-page "https://apps.kde.org/elisa/")
|
2019-12-08 12:07:18 -05:00
|
|
|
|
(synopsis "Powerful music player for Plasma 5")
|
|
|
|
|
(description "Elisa is a simple music player aiming to provide a nice
|
2020-04-12 16:39:58 -04:00
|
|
|
|
experience for its users. Elisa browses music by album, artist or
|
2019-12-08 12:07:18 -05:00
|
|
|
|
all tracks. The music is indexed using either a private indexer or an indexer
|
|
|
|
|
using Baloo. The private one can be configured to scan music on chosen paths.
|
|
|
|
|
The Baloo one is much faster because Baloo is providing all needed data from
|
|
|
|
|
its own database. You can build and play your own playlist.")
|
|
|
|
|
(license license:lgpl3+)))
|
|
|
|
|
|
2019-12-08 13:09:10 -05:00
|
|
|
|
(define-public ffmpegthumbs
|
|
|
|
|
(package
|
|
|
|
|
(name "ffmpegthumbs")
|
gnu: KDE Multimedia: Update to 22.04.3.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, elisa,
ffmpegthumbs, juk, k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc):
Update to 22.04.3.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-08-02 02:25:05 -04:00
|
|
|
|
(version "22.04.3")
|
2019-12-08 13:09:10 -05:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 10:06:58 -04:00
|
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2019-12-08 13:09:10 -05:00
|
|
|
|
"/src/ffmpegthumbs-" version ".tar.xz"))
|
|
|
|
|
(sha256
|
gnu: KDE Multimedia: Update to 22.04.3.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, elisa,
ffmpegthumbs, juk, k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc):
Update to 22.04.3.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-08-02 02:25:05 -04:00
|
|
|
|
(base32 "1jl7l3n2lfg71kbzwjn5nrm3qlgilhnvs67iil162mnv52gf3c0v"))))
|
2019-12-08 13:09:10 -05:00
|
|
|
|
(build-system qt-build-system)
|
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list extra-cmake-modules pkg-config))
|
2019-12-08 13:09:10 -05:00
|
|
|
|
(inputs
|
gnu: KDE Multimedia: Update all packages to 21.12.3.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, elisa,
ffmpegthumbs, juk, k3b, kaffeine, kamoso, kmix, kwave,
libkcddb, libkcompactdisc): Update to 21.12.3.
(kid3): Update to 3.9.1.
(kamoso): Remove unneeded configure-flags.
(kuserfeedback): Update to 1.2.0.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-04 03:53:37 -05:00
|
|
|
|
(list ffmpeg kconfig ki18n kio taglib qtbase-5))
|
2022-07-26 06:11:37 -04:00
|
|
|
|
(home-page "https://apps.kde.org/ffmpegthumbs/")
|
2019-12-08 13:09:10 -05:00
|
|
|
|
(synopsis "Video thumbnail generator for KDE using ffmpeg")
|
|
|
|
|
(description "
|
|
|
|
|
FFMpegThumbs is a video thumbnail generator for KDE file managers
|
|
|
|
|
like Dolphin and Konqueror. It enables them to show preview images
|
|
|
|
|
of video files using FFMpeg.
|
|
|
|
|
|
|
|
|
|
This package is part of the KDE multimedia module.")
|
|
|
|
|
(license license:gpl2+)))
|
|
|
|
|
|
2019-12-06 15:21:53 -05:00
|
|
|
|
(define-public juk
|
|
|
|
|
(package
|
|
|
|
|
(name "juk")
|
gnu: KDE Multimedia: Update to 22.04.3.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, elisa,
ffmpegthumbs, juk, k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc):
Update to 22.04.3.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-08-02 02:25:05 -04:00
|
|
|
|
(version "22.04.3")
|
2019-12-06 15:21:53 -05:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 10:06:58 -04:00
|
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2019-12-06 15:21:53 -05:00
|
|
|
|
"/src/juk-" version ".tar.xz"))
|
|
|
|
|
(sha256
|
gnu: KDE Multimedia: Update to 22.04.3.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, elisa,
ffmpegthumbs, juk, k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc):
Update to 22.04.3.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-08-02 02:25:05 -04:00
|
|
|
|
(base32 "12pnbx17r1103w39gglybdzs8kcpwghy5lc4q9fqk89s1r7l3c7h"))))
|
2019-12-06 15:21:53 -05:00
|
|
|
|
(build-system qt-build-system)
|
|
|
|
|
(native-inputs
|
2022-07-26 06:15:41 -04:00
|
|
|
|
(list extra-cmake-modules kdoctools))
|
2019-12-06 15:21:53 -05:00
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list kcoreaddons
|
|
|
|
|
kcompletion
|
|
|
|
|
kconfig
|
|
|
|
|
kcrash
|
|
|
|
|
kdbusaddons
|
|
|
|
|
kglobalaccel
|
|
|
|
|
ki18n
|
|
|
|
|
kiconthemes
|
|
|
|
|
kjobwidgets
|
|
|
|
|
kio
|
|
|
|
|
knotifications
|
|
|
|
|
ktextwidgets
|
|
|
|
|
kwallet
|
|
|
|
|
kwidgetsaddons
|
|
|
|
|
kwindowsystem
|
|
|
|
|
kxmlgui
|
2022-02-15 06:21:15 -05:00
|
|
|
|
breeze-icons ; default icon set
|
2021-12-13 11:18:24 -05:00
|
|
|
|
phonon
|
|
|
|
|
phonon-backend-gstreamer
|
|
|
|
|
qtbase-5
|
2022-07-17 01:11:46 -04:00
|
|
|
|
qtsvg-5
|
2021-12-13 11:18:24 -05:00
|
|
|
|
taglib))
|
2022-07-26 06:11:37 -04:00
|
|
|
|
(home-page "https://apps.kde.org/juk/")
|
2019-12-06 15:21:53 -05:00
|
|
|
|
(synopsis "Music jukebox / music player")
|
|
|
|
|
(description "JuK is a powerful music player capable of managing a large
|
|
|
|
|
music collection.
|
|
|
|
|
|
|
|
|
|
Some of JuK's features include:
|
|
|
|
|
@itemize
|
|
|
|
|
@item Music collection, playlists, and smart playlists
|
|
|
|
|
@item Tag editing support, including the ability to edit multiple files at once
|
|
|
|
|
@item Tag-based music file organization and renaming
|
|
|
|
|
@item CD burning support using k3b
|
|
|
|
|
@item Album art using Google Image Search
|
|
|
|
|
@end itemize
|
|
|
|
|
|
|
|
|
|
This package is part of the KDE multimedia module.")
|
|
|
|
|
(license license:gpl2+)))
|
2019-12-06 15:32:08 -05:00
|
|
|
|
|
2022-01-03 18:10:25 -05:00
|
|
|
|
(define-public kid3
|
|
|
|
|
(package
|
|
|
|
|
(name "kid3")
|
gnu: KDE Multimedia: Update all packages to 21.12.3.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, elisa,
ffmpegthumbs, juk, k3b, kaffeine, kamoso, kmix, kwave,
libkcddb, libkcompactdisc): Update to 21.12.3.
(kid3): Update to 3.9.1.
(kamoso): Remove unneeded configure-flags.
(kuserfeedback): Update to 1.2.0.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-04 03:53:37 -05:00
|
|
|
|
(version "3.9.1")
|
2022-01-03 18:10:25 -05:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://invent.kde.org/multimedia/kid3.git/")
|
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
gnu: KDE Multimedia: Update all packages to 21.12.3.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, elisa,
ffmpegthumbs, juk, k3b, kaffeine, kamoso, kmix, kwave,
libkcddb, libkcompactdisc): Update to 21.12.3.
(kid3): Update to 3.9.1.
(kamoso): Remove unneeded configure-flags.
(kuserfeedback): Update to 1.2.0.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-04 03:53:37 -05:00
|
|
|
|
(base32 "1rq0742rm3y5ps7878qd7xhhiizy6d6ls6hdjqa6z5sq077s5lz9"))))
|
2022-01-03 18:10:25 -05:00
|
|
|
|
(build-system qt-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
(list
|
|
|
|
|
#:configure-flags
|
|
|
|
|
#~(list (string-append "-DDOCBOOK_XSL_DIR="
|
|
|
|
|
#$(this-package-native-input "docbook-xsl")))
|
|
|
|
|
#:phases
|
|
|
|
|
`(modify-phases %standard-phases
|
|
|
|
|
;; FIXME: Documentation build scripts use unix pipes, which will fail
|
|
|
|
|
;; in the build environment.
|
|
|
|
|
(add-after 'unpack 'skip-docs
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "CMakeLists.txt"
|
|
|
|
|
(("add_subdirectory\\(doc\\)") "")))))))
|
|
|
|
|
(native-inputs
|
|
|
|
|
(list docbook-xsl
|
|
|
|
|
extra-cmake-modules
|
|
|
|
|
ffmpeg
|
|
|
|
|
kdoctools
|
|
|
|
|
libxslt
|
|
|
|
|
python-wrapper
|
2022-07-19 16:52:05 -04:00
|
|
|
|
qttools-5))
|
2022-01-03 18:10:25 -05:00
|
|
|
|
(inputs
|
|
|
|
|
(list chromaprint
|
|
|
|
|
flac
|
|
|
|
|
id3lib
|
|
|
|
|
kconfig
|
|
|
|
|
kconfigwidgets
|
|
|
|
|
kcoreaddons
|
|
|
|
|
kio
|
|
|
|
|
kwidgetsaddons
|
|
|
|
|
kxmlgui
|
|
|
|
|
libvorbis
|
|
|
|
|
qtbase-5
|
2022-07-17 21:03:18 -04:00
|
|
|
|
qtdeclarative-5
|
2022-07-17 19:00:48 -04:00
|
|
|
|
qtmultimedia-5
|
2022-01-03 18:10:25 -05:00
|
|
|
|
readline
|
|
|
|
|
taglib
|
|
|
|
|
zlib))
|
|
|
|
|
(home-page "https://kid3.kde.org/")
|
|
|
|
|
(synopsis "Audio tag editor")
|
|
|
|
|
(description "Kid3 is an audio tag editor for KDE that supports a large
|
|
|
|
|
variety of formats.")
|
|
|
|
|
(license license:gpl2+)))
|
|
|
|
|
|
2019-12-06 15:32:08 -05:00
|
|
|
|
(define-public k3b
|
|
|
|
|
(package
|
|
|
|
|
(name "k3b")
|
gnu: KDE Multimedia: Update to 22.04.3.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, elisa,
ffmpegthumbs, juk, k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc):
Update to 22.04.3.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-08-02 02:25:05 -04:00
|
|
|
|
(version "22.04.3")
|
2019-12-06 15:32:08 -05:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 10:06:58 -04:00
|
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2019-12-06 15:32:08 -05:00
|
|
|
|
"/src/k3b-" version ".tar.xz"))
|
|
|
|
|
(sha256
|
gnu: KDE Multimedia: Update to 22.04.3.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, elisa,
ffmpegthumbs, juk, k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc):
Update to 22.04.3.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-08-02 02:25:05 -04:00
|
|
|
|
(base32 "1bizk66ad2yq8xszjqvv2ghk069d0l6iczn5rlna1p3zigr43ysl"))))
|
2019-12-06 15:32:08 -05:00
|
|
|
|
(build-system qt-build-system)
|
2020-06-17 06:50:05 -04:00
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
2020-06-17 06:50:06 -04:00
|
|
|
|
(add-after 'unpack 'set-absolute-library-paths
|
2021-11-27 05:25:21 -05:00
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
2020-06-17 06:50:06 -04:00
|
|
|
|
;; Set absolute paths for dlopened libraries. We can’t use k3b’s
|
|
|
|
|
;; runpath as they are loaded by the Qt library.
|
2021-11-27 05:25:21 -05:00
|
|
|
|
(let ((libcdio-paranoia (assoc-ref inputs "libcdio-paranoia"))
|
|
|
|
|
(libdvdcss (assoc-ref inputs "libdvdcss")))
|
2020-06-17 06:50:06 -04:00
|
|
|
|
(substitute* "libk3b/tools/k3bcdparanoialib.cpp"
|
|
|
|
|
(("\"(cdio_cdda|cdio_paranoia)\"" _ library)
|
|
|
|
|
(string-append "\"" libcdio-paranoia "/lib/" library "\"")))
|
|
|
|
|
(substitute* "libk3b/tools/k3blibdvdcss.cpp"
|
|
|
|
|
(("\"(dvdcss)\"" _ library)
|
|
|
|
|
(string-append "\"" libdvdcss "/lib/" library "\""))))
|
|
|
|
|
#t))
|
2022-07-14 08:21:17 -04:00
|
|
|
|
(add-before 'configure 'fix-cmake-taglib
|
|
|
|
|
(lambda _
|
|
|
|
|
;; Use the CMake variables provided by FindTaglib from
|
|
|
|
|
;; extra-cmake-modules, instead of bundled FindTaglib.cmake:
|
|
|
|
|
(substitute*
|
|
|
|
|
'("plugins/decoder/mp3/CMakeLists.txt"
|
|
|
|
|
"plugins/decoder/flac/CMakeLists.txt"
|
|
|
|
|
"plugins/project/audiometainforenamer/CMakeLists.txt")
|
|
|
|
|
(("TAGLIB_INCLUDES") "Taglib_INCLUDE_DIRS")
|
|
|
|
|
(("TAGLIB_LIBRARIES") "Taglib_LIBRARIES"))))
|
2020-06-17 06:50:05 -04:00
|
|
|
|
(add-after 'qt-wrap 'wrap-path
|
2021-11-27 05:25:21 -05:00
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
2020-06-17 06:50:05 -04:00
|
|
|
|
;; Set paths to backend programs.
|
2021-11-27 05:25:21 -05:00
|
|
|
|
(wrap-program (string-append (assoc-ref outputs "out") "/bin/k3b")
|
2020-06-17 06:50:05 -04:00
|
|
|
|
`("PATH" ":" prefix
|
|
|
|
|
,(map (lambda (input)
|
2021-11-27 05:25:21 -05:00
|
|
|
|
(string-append (assoc-ref inputs input) "/bin"))
|
2022-07-14 08:44:23 -04:00
|
|
|
|
'("cdrdao" "cdrtools" "dvd+rw-tools" "libburn" "sox"))))
|
2020-06-17 06:50:05 -04:00
|
|
|
|
#t)))))
|
2019-12-06 15:32:08 -05:00
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list extra-cmake-modules pkg-config kdoctools))
|
2019-12-06 15:32:08 -05:00
|
|
|
|
(inputs
|
2022-07-14 08:44:23 -04:00
|
|
|
|
(list bash-minimal
|
|
|
|
|
cdrdao
|
|
|
|
|
cdrtools
|
2021-12-13 11:18:24 -05:00
|
|
|
|
dvd+rw-tools
|
|
|
|
|
ffmpeg
|
|
|
|
|
flac
|
|
|
|
|
karchive
|
|
|
|
|
kcmutils
|
|
|
|
|
kconfig
|
|
|
|
|
kcoreaddons
|
|
|
|
|
kfilemetadata
|
|
|
|
|
ki18n
|
|
|
|
|
kiconthemes
|
|
|
|
|
kio
|
|
|
|
|
kjobwidgets
|
|
|
|
|
knewstuff
|
|
|
|
|
knotifications
|
|
|
|
|
knotifyconfig
|
|
|
|
|
kservice
|
|
|
|
|
kwidgetsaddons
|
|
|
|
|
kxmlgui
|
|
|
|
|
lame
|
|
|
|
|
libburn
|
|
|
|
|
libcdio-paranoia
|
|
|
|
|
libdvdcss
|
|
|
|
|
libdvdread
|
|
|
|
|
;; TODO: LibFuzzer
|
|
|
|
|
libkcddb
|
|
|
|
|
libmad
|
|
|
|
|
libmpcdec
|
|
|
|
|
;;("libmusicbrainz" ,libmusicbrainz) ; wants old version 2
|
|
|
|
|
libsamplerate
|
|
|
|
|
libsndfile
|
|
|
|
|
libvorbis
|
2022-02-15 06:21:15 -05:00
|
|
|
|
breeze-icons ; default icon set
|
2021-12-13 11:18:24 -05:00
|
|
|
|
qtbase-5
|
|
|
|
|
shared-mime-info
|
|
|
|
|
solid
|
|
|
|
|
sox
|
|
|
|
|
taglib
|
|
|
|
|
zlib))
|
2022-07-26 06:11:37 -04:00
|
|
|
|
(home-page "https://apps.kde.org/k3b/")
|
2019-12-06 15:32:08 -05:00
|
|
|
|
(synopsis "Sophisticated CD/DVD burning application")
|
|
|
|
|
(description "K3b is CD-writing software which intends to be feature-rich
|
|
|
|
|
and provide an easily usable interface. Features include burning audio CDs
|
|
|
|
|
from .WAV and .MP3 audio files, configuring external programs and configuring
|
2020-06-17 06:50:07 -04:00
|
|
|
|
devices.
|
|
|
|
|
|
|
|
|
|
The @code{udisks-service} should be enabled for @command{k3b} to discover the
|
|
|
|
|
available CD drives.")
|
2019-12-06 15:32:08 -05:00
|
|
|
|
(license ;; GPL for programs, FDL for documentation
|
|
|
|
|
(list license:gpl2+ license:fdl1.2+))))
|
2019-12-06 15:46:24 -05:00
|
|
|
|
|
2019-12-06 16:11:19 -05:00
|
|
|
|
(define-public kaffeine
|
|
|
|
|
(package
|
|
|
|
|
(name "kaffeine")
|
|
|
|
|
(version "2.0.18")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://kde/stable/kaffeine"
|
|
|
|
|
"/kaffeine-" version ".tar.xz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "10dnhr9v2jlki44i3gmjagky66ybixmv6f29z5imk9clgddrlyfr"))))
|
|
|
|
|
(build-system qt-build-system)
|
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list extra-cmake-modules pkg-config kdoctools))
|
2019-12-06 16:11:19 -05:00
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list eudev
|
|
|
|
|
kcoreaddons
|
|
|
|
|
kdbusaddons
|
|
|
|
|
ki18n
|
|
|
|
|
kio
|
|
|
|
|
kwidgetsaddons
|
|
|
|
|
kwindowsystem
|
|
|
|
|
kxmlgui
|
|
|
|
|
libxscrnsaver
|
2022-02-15 06:21:15 -05:00
|
|
|
|
breeze-icons ; default icon set
|
2021-12-13 11:18:24 -05:00
|
|
|
|
qtbase-5
|
|
|
|
|
qtx11extras
|
|
|
|
|
solid
|
|
|
|
|
v4l-utils ; libdvbv5
|
|
|
|
|
vlc))
|
2019-12-06 16:11:19 -05:00
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'fix-code
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "src/dvb/dvbdevice_linux.cpp"
|
|
|
|
|
(("\\s*qPrintable\\(transponder\\.getTransmissionType\\(\\)\\)\\);")
|
|
|
|
|
"transponder.getTransmissionType());"))
|
|
|
|
|
#t)))))
|
2022-07-26 06:11:37 -04:00
|
|
|
|
(home-page "https://apps.kde.org/kaffeine/")
|
2019-12-06 16:11:19 -05:00
|
|
|
|
(synopsis "Versatile media player for KDE")
|
|
|
|
|
(description "Kaffeine is a media player for KDE. While it supports
|
|
|
|
|
multiple Phonon backends, its default backend is Xine, giving Kaffeine a wide
|
|
|
|
|
variety of supported media types and letting Kaffeine access CDs, DVDs, and
|
|
|
|
|
network streams easily.
|
|
|
|
|
|
|
|
|
|
Kaffeine can keep track of multiple playlists simultaneously, and supports
|
|
|
|
|
autoloading of subtitle files for use while playing video.")
|
|
|
|
|
(license ;; GPL for programs, FDL for documentation
|
|
|
|
|
(list license:gpl2+ license:fdl1.2+))))
|
|
|
|
|
|
2019-12-08 12:08:57 -05:00
|
|
|
|
(define-public kamoso
|
|
|
|
|
(package
|
|
|
|
|
(name "kamoso")
|
gnu: KDE Multimedia: Update to 22.04.3.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, elisa,
ffmpegthumbs, juk, k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc):
Update to 22.04.3.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-08-02 02:25:05 -04:00
|
|
|
|
(version "22.04.3")
|
2019-12-08 12:08:57 -05:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 10:06:58 -04:00
|
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2019-12-08 12:08:57 -05:00
|
|
|
|
"/src/kamoso-" version ".tar.xz"))
|
|
|
|
|
(sha256
|
gnu: KDE Multimedia: Update to 22.04.3.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, elisa,
ffmpegthumbs, juk, k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc):
Update to 22.04.3.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-08-02 02:25:05 -04:00
|
|
|
|
(base32 "0br7dbnm2ypdl55pscp8wr0vwrgprycrxxj206b5r1l9ysx9aqip"))))
|
2019-12-08 12:08:57 -05:00
|
|
|
|
(build-system qt-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("extra-cmake-modules" ,extra-cmake-modules)
|
|
|
|
|
("glib:bin" ,glib "bin")
|
|
|
|
|
("kdoctools" ,kdoctools)
|
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list gstreamer
|
|
|
|
|
gst-plugins-base
|
|
|
|
|
kconfig
|
|
|
|
|
ki18n
|
|
|
|
|
kio
|
|
|
|
|
kirigami
|
|
|
|
|
knotifications
|
|
|
|
|
kparts
|
2022-02-15 06:21:15 -05:00
|
|
|
|
breeze-icons ; default icon set
|
2021-12-13 11:18:24 -05:00
|
|
|
|
purpose
|
|
|
|
|
qtbase-5
|
2022-07-17 21:03:18 -04:00
|
|
|
|
qtdeclarative-5
|
2021-12-13 11:18:24 -05:00
|
|
|
|
qtgraphicaleffects
|
2022-07-17 23:47:28 -04:00
|
|
|
|
qtquickcontrols-5
|
2022-07-17 23:49:07 -04:00
|
|
|
|
qtquickcontrols2-5 ; not listed as dependency
|
2021-12-13 11:18:24 -05:00
|
|
|
|
qtx11extras))
|
2019-12-08 12:08:57 -05:00
|
|
|
|
(arguments
|
gnu: KDE Multimedia: Update all packages to 21.12.3.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, elisa,
ffmpegthumbs, juk, k3b, kaffeine, kamoso, kmix, kwave,
libkcddb, libkcompactdisc): Update to 21.12.3.
(kid3): Update to 3.9.1.
(kamoso): Remove unneeded configure-flags.
(kuserfeedback): Update to 1.2.0.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-02-04 03:53:37 -05:00
|
|
|
|
(list #:tests? #f)) ; test program gets built, but is not found
|
2022-07-26 06:11:37 -04:00
|
|
|
|
(home-page "https://apps.kde.org/kamoso/")
|
2019-12-08 12:08:57 -05:00
|
|
|
|
(synopsis "Take pictures and videos out of your webcam")
|
|
|
|
|
(description "Kamoso is a simple and friendly program to use your
|
|
|
|
|
camera. Use it to take pictures and make videos to share.")
|
|
|
|
|
(license ;; GPL for programs, LGPL for libraries
|
|
|
|
|
(list license:gpl2+ license:lgpl2.0+))))
|
|
|
|
|
|
2019-12-08 12:15:49 -05:00
|
|
|
|
(define-public kmix
|
|
|
|
|
(package
|
|
|
|
|
(name "kmix")
|
gnu: KDE Multimedia: Update to 22.04.3.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, elisa,
ffmpegthumbs, juk, k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc):
Update to 22.04.3.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-08-02 02:25:05 -04:00
|
|
|
|
(version "22.04.3")
|
2019-12-08 12:15:49 -05:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 10:06:58 -04:00
|
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2019-12-08 12:15:49 -05:00
|
|
|
|
"/src/kmix-" version ".tar.xz"))
|
|
|
|
|
(sha256
|
gnu: KDE Multimedia: Update to 22.04.3.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, elisa,
ffmpegthumbs, juk, k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc):
Update to 22.04.3.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-08-02 02:25:05 -04:00
|
|
|
|
(base32 "0zc96l9mnn763pw54ki715sw3wm4z6rjdz2zzsjc6l5iwcqzwqq8"))))
|
2019-12-08 12:15:49 -05:00
|
|
|
|
(build-system qt-build-system)
|
|
|
|
|
(native-inputs
|
2022-07-26 06:15:41 -04:00
|
|
|
|
(list extra-cmake-modules kdoctools pkg-config))
|
2019-12-08 12:15:49 -05:00
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list alsa-lib
|
|
|
|
|
glib
|
|
|
|
|
kconfigwidgets
|
|
|
|
|
kcompletion
|
|
|
|
|
kconfig
|
|
|
|
|
kconfigwidgets
|
|
|
|
|
kcrash
|
|
|
|
|
kdbusaddons
|
|
|
|
|
kglobalaccel
|
|
|
|
|
ki18n
|
|
|
|
|
kiconthemes
|
|
|
|
|
knotifications
|
|
|
|
|
kwidgetsaddons
|
|
|
|
|
kwindowsystem
|
|
|
|
|
kxmlgui
|
|
|
|
|
libcanberra
|
2022-02-15 06:21:15 -05:00
|
|
|
|
breeze-icons ; default icon set
|
2021-12-13 11:18:24 -05:00
|
|
|
|
plasma-framework
|
|
|
|
|
pulseaudio
|
|
|
|
|
qtbase-5
|
|
|
|
|
solid))
|
2022-07-26 06:11:37 -04:00
|
|
|
|
(home-page "https://apps.kde.org/kmix/")
|
2019-12-08 12:15:49 -05:00
|
|
|
|
(synopsis "Volume control and mixer")
|
|
|
|
|
(description "KMix is an audio device mixer, used to adjust volume, select
|
|
|
|
|
recording inputs, and set other hardware options.
|
|
|
|
|
|
|
|
|
|
This package is part of the KDE multimedia module.")
|
|
|
|
|
(license ;; GPL for programs, LGPL for libraries, FDL for documentation
|
|
|
|
|
(list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
|
|
|
|
|
|
2019-12-08 12:16:40 -05:00
|
|
|
|
(define-public kmplayer
|
2022-07-21 06:38:08 -04:00
|
|
|
|
;; The latest release was in 2016, and does not work with the newer
|
|
|
|
|
;; KDE libraries.
|
|
|
|
|
(let ((commit "88e85308b71dc5e58cc655b5b9a13cd71b78233f")
|
|
|
|
|
(revision "1"))
|
|
|
|
|
(package
|
|
|
|
|
(name "kmplayer")
|
|
|
|
|
(version (git-version "0.12.0b" revision commit))
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://invent.kde.org/multimedia/kmplayer")
|
|
|
|
|
(commit commit)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1pzk0js499diqabpwxjq6nnwpmj1ikpyyykzjbm844xcbm74cl19"))))
|
|
|
|
|
(build-system qt-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
(list extra-cmake-modules pkg-config kdoctools))
|
|
|
|
|
(inputs
|
|
|
|
|
(list kbookmarks
|
|
|
|
|
kconfig
|
|
|
|
|
kcoreaddons
|
|
|
|
|
kdelibs4support
|
|
|
|
|
ki18n
|
|
|
|
|
kinit
|
|
|
|
|
kio
|
|
|
|
|
kparts
|
|
|
|
|
kmediaplayer
|
|
|
|
|
kwidgetsaddons
|
|
|
|
|
libxcb ;; FIXME: why does cmake not find XEVIE and XPRINT?
|
2022-02-15 06:21:15 -05:00
|
|
|
|
breeze-icons ; default icon set
|
2022-07-21 06:38:08 -04:00
|
|
|
|
phonon
|
|
|
|
|
qtbase-5
|
|
|
|
|
cairo
|
|
|
|
|
qtsvg-5
|
|
|
|
|
qtx11extras
|
|
|
|
|
xcb-util
|
|
|
|
|
xcb-util-cursor
|
|
|
|
|
xcb-util-errors
|
|
|
|
|
xcb-util-image
|
|
|
|
|
xcb-util-keysyms
|
|
|
|
|
xcb-util-wm))
|
|
|
|
|
(arguments
|
|
|
|
|
(list #:configure-flags
|
|
|
|
|
#~(list (string-append
|
|
|
|
|
"-DCMAKE_CXX_FLAGS=-I"
|
|
|
|
|
#$(this-package-input "qtx11extras")
|
|
|
|
|
"/include/qt5"))))
|
|
|
|
|
(home-page "https://apps.kde.org/kmplayer/")
|
|
|
|
|
(synopsis "Media player using mplayer/phonon as backend")
|
|
|
|
|
(description "Kmplayer can play all the audio/video supported by
|
2019-12-08 12:16:40 -05:00
|
|
|
|
mplayer/phonon from a local file or URL and be embedded in Konqueror and
|
|
|
|
|
KHTML. It also plays DVDs.
|
|
|
|
|
|
|
|
|
|
Some features:
|
|
|
|
|
@itemize
|
|
|
|
|
@item play DVD/VCD movies (from file or url and from a video device)
|
|
|
|
|
@item embed inside konqueror (movie is played inside konqueror)
|
|
|
|
|
@item embed inside khtml (movie playback inside a html page)
|
|
|
|
|
@item Movie recording using mencoder (part of the mplayer package)
|
|
|
|
|
@item No video during recording, but you can always open a new window and play it
|
|
|
|
|
@item Broadcasting, http streaming, using ffserver/ffmpeg
|
|
|
|
|
@item For TV sources, you need v4lctl (part of the xawtv package)
|
|
|
|
|
@end itemize")
|
2022-07-21 06:38:08 -04:00
|
|
|
|
(license ;; GPL for programs, LGPL for libraries, FDL for documentation
|
|
|
|
|
(list license:gpl2+ license:lgpl2.0+ license:fdl1.2+)))))
|
2019-12-08 12:16:40 -05:00
|
|
|
|
|
2019-12-08 12:06:00 -05:00
|
|
|
|
(define-public kwave
|
|
|
|
|
(package
|
|
|
|
|
(name "kwave")
|
gnu: KDE Multimedia: Update to 22.04.3.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, elisa,
ffmpegthumbs, juk, k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc):
Update to 22.04.3.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-08-02 02:25:05 -04:00
|
|
|
|
(version "22.04.3")
|
2019-12-08 12:06:00 -05:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 10:06:58 -04:00
|
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2019-12-08 12:06:00 -05:00
|
|
|
|
"/src/kwave-" version ".tar.xz"))
|
|
|
|
|
(sha256
|
gnu: KDE Multimedia: Update to 22.04.3.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, elisa,
ffmpegthumbs, juk, k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc):
Update to 22.04.3.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-08-02 02:25:05 -04:00
|
|
|
|
(base32 "0j6ck44lkfcnaa0rymv2aqvdcy0zbybbklm1s6mvbgdpfsh0rhkm"))))
|
2019-12-08 12:06:00 -05:00
|
|
|
|
(build-system qt-build-system)
|
|
|
|
|
(native-inputs
|
2022-04-18 12:16:35 -04:00
|
|
|
|
(list extra-cmake-modules (librsvg-for-system) pkg-config kdoctools))
|
2019-12-08 12:06:00 -05:00
|
|
|
|
(inputs
|
2021-12-13 16:15:07 -05:00
|
|
|
|
(list alsa-lib
|
|
|
|
|
audiofile
|
|
|
|
|
flac
|
|
|
|
|
id3lib
|
|
|
|
|
karchive
|
|
|
|
|
kcompletion
|
|
|
|
|
kconfig
|
|
|
|
|
kconfigwidgets
|
|
|
|
|
kcoreaddons
|
|
|
|
|
kcrash
|
|
|
|
|
kdbusaddons
|
|
|
|
|
ki18n
|
|
|
|
|
kiconthemes
|
|
|
|
|
kio
|
|
|
|
|
kservice
|
|
|
|
|
ktextwidgets
|
|
|
|
|
kwidgetsaddons
|
|
|
|
|
kxmlgui
|
|
|
|
|
libmad
|
|
|
|
|
libsamplerate
|
|
|
|
|
libvorbis
|
|
|
|
|
opus
|
2022-02-15 06:21:15 -05:00
|
|
|
|
breeze-icons ; default icon set
|
2021-12-13 16:15:07 -05:00
|
|
|
|
pulseaudio
|
|
|
|
|
qtbase-5
|
2022-07-17 19:00:48 -04:00
|
|
|
|
qtmultimedia-5
|
2021-12-13 16:15:07 -05:00
|
|
|
|
zlib))
|
2022-07-26 06:11:37 -04:00
|
|
|
|
(home-page "https://apps.kde.org/kwave/")
|
2019-12-08 12:06:00 -05:00
|
|
|
|
(synopsis "Sound editor for KDE")
|
|
|
|
|
(description "Kwave is a sound editor designed for the KDE Desktop
|
|
|
|
|
Environment.
|
|
|
|
|
|
|
|
|
|
With Kwave you can record, play back, import and edit many sorts of audio
|
|
|
|
|
files including multi-channel files. It includes some plugins to transform
|
|
|
|
|
audio files in several ways and presents a graphical view with a complete
|
|
|
|
|
zoom- and scroll capability.
|
|
|
|
|
|
|
|
|
|
Its features include:
|
|
|
|
|
@itemize
|
|
|
|
|
@item 24 Bit Support
|
|
|
|
|
@item Undo/Redo
|
|
|
|
|
@item Use of multicore CPUs (SMP, hyperthreading)
|
|
|
|
|
@item Simple Drag & Drop
|
|
|
|
|
@item Realtime Pre-Listen for some effects
|
|
|
|
|
@item Support for multi-track files
|
|
|
|
|
@item Playback and recording via native ALSA (or OSS, deprecated)
|
|
|
|
|
@item Playback via PulseAudio and Phonon
|
|
|
|
|
@item Load and edit-capability for large files (can use virtual memory)
|
|
|
|
|
@item Reading and auto-repair of damaged wav-files
|
|
|
|
|
@item Supports multiple windows
|
|
|
|
|
@item Extendable Plugin interface
|
|
|
|
|
@item a nice splashscreen
|
|
|
|
|
@item some label handling
|
|
|
|
|
@end itemize")
|
|
|
|
|
(license ;; GPL for programs, LGPL for libraries, FDL for documentation
|
|
|
|
|
(list license:gpl2+ license:lgpl2.0+ license:fdl1.2+
|
|
|
|
|
license:cc-by-sa3.0 license:cc-by-sa4.0 ;; icons, samples
|
|
|
|
|
license:cc0 license:bsd-3)))) ;; utilities files
|
|
|
|
|
|
2019-12-06 15:46:24 -05:00
|
|
|
|
(define-public libkcddb
|
|
|
|
|
(package
|
|
|
|
|
(name "libkcddb")
|
gnu: KDE Multimedia: Update to 22.04.3.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, elisa,
ffmpegthumbs, juk, k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc):
Update to 22.04.3.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-08-02 02:25:05 -04:00
|
|
|
|
(version "22.04.3")
|
2019-12-06 15:46:24 -05:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 10:06:58 -04:00
|
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2019-12-06 15:46:24 -05:00
|
|
|
|
"/src/libkcddb-" version ".tar.xz"))
|
|
|
|
|
(sha256
|
gnu: KDE Multimedia: Update to 22.04.3.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, elisa,
ffmpegthumbs, juk, k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc):
Update to 22.04.3.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-08-02 02:25:05 -04:00
|
|
|
|
(base32 "1js5r8hxqabnygmavfjvjbfy5c7978bmwm2rqlgsfyn17fkmf2y8"))))
|
2019-12-06 15:46:24 -05:00
|
|
|
|
(build-system qt-build-system)
|
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list extra-cmake-modules kdoctools))
|
2019-12-06 15:46:24 -05:00
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list kcodecs
|
|
|
|
|
kconfig
|
|
|
|
|
ki18n
|
|
|
|
|
kio
|
|
|
|
|
kwidgetsaddons
|
|
|
|
|
libmusicbrainz
|
|
|
|
|
qtbase-5))
|
2019-12-06 15:46:24 -05:00
|
|
|
|
(arguments
|
|
|
|
|
`(#:tests? #f)) ; Most tests require network
|
gnu: KDE: Fix old cgit home-pages.
Fix all home-pages pointing to git-repos a cgit.kde.org, which is
gone, to now use the correct repo at invent.kde.org.
* gnu/packages/kde.scm (grantleetheme, kdiagram): Update home-page.
* gnu/packages/kde-frameworks.scm (kholidays): Likewise.
* gnu/packages/kde-internet.scm (libgravatar, libktorrent): Likewise.
* gnu/packages/kde-multimedia.scm (libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-pim.scm (kblog, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kincidenceeditor, kmailcommon,
kmailimporter, kmessagelib, kpimcommon, ksmtp, libkdepim, libkgapi,
libkleo, libksieve): Likewise.
* gnu/packages/kde-plasma.scm (kdecoration, kscreenlocker): Likewise.
2020-12-12 12:22:37 -05:00
|
|
|
|
(home-page "https://invent.kde.org/multimedia/libkcddb")
|
2019-12-06 15:46:24 -05:00
|
|
|
|
(synopsis "CDDB library for KDE Platform (runtime)")
|
|
|
|
|
(description "A library for retrieving and sending cddb information.")
|
|
|
|
|
(license ;; GPL for programs, LGPL for libraries, FDL for documentation
|
|
|
|
|
(list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
|
2019-12-08 12:09:36 -05:00
|
|
|
|
|
|
|
|
|
(define-public libkcompactdisc
|
|
|
|
|
(package
|
|
|
|
|
(name "libkcompactdisc")
|
gnu: KDE Multimedia: Update to 22.04.3.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, elisa,
ffmpegthumbs, juk, k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc):
Update to 22.04.3.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-08-02 02:25:05 -04:00
|
|
|
|
(version "22.04.3")
|
2019-12-08 12:09:36 -05:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
gnu: KDE: Update to 20.04.1.
* gnu/packages/patches/akonadi-paths.patch: Adjust for upstream changes.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-internet.scm (kget, kopete, krdc, libgravatar): Update to
20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, ffmpegthumbs, juk,
k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde-utils.scm (kate, kmag, kmousetool, kmouth, sweeper): Update
to 20.04.1.
[source](uri): Adjust for new upstream location.
* gnu/packages/kde.scm (baloo-widgets, libkomparediff2, kqtquickcharts,
grantleetheme, kcachegrind, libkdegames, zeroconf-ioslave): Update to 20.04.1.
[source](uri): Adjust for new upstream location.
(grantleetheme)[inputs]: Add KGUIADDONS.
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor, kaddressbook,
kalarmcal, kblog, kcalendarsupport, kcalutils, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kgpg, kidentitymanagement, kimap, kldap,
kleopatra, kmail, kmailcommon, kmailimporter, kmailtransport, kmbox,
kmessagelib, kmime, knotes, kontactinterface, korganizer, kpimcommon,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 20.04.1.
[source](uri): Adjust to current.
(akonadi)[inputs]: Remove KDBUSADDONS and KDESIGNERPLUGIN.
(akonadi-calendar)[inputs]: Remove KDBUSADDONS.
(kdepim-runtime)[source](patches): Remove.
[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH'.
[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(kmessagelib)[arguments]: Add phase 'extend-CPLUS_INCLUDE_PATH.
[inputs]: Add QCA.
(kdepim-apps-libs)[inputs]: Remove KDBUSADDONS and KICONTHEMES.
(knotes)[inputs]: Remove KDBUSADDONS.
(kpimcommon)[inputs]: Remove KDBUSADDONS and KCOMPLETION.
(libksieve)[arguments]: Disable one more test.
(korganizer)[arguments]: Disable one test.
2020-06-06 10:06:58 -04:00
|
|
|
|
(uri (string-append "mirror://kde/stable/release-service/" version
|
2019-12-08 12:09:36 -05:00
|
|
|
|
"/src/libkcompactdisc-" version ".tar.xz"))
|
|
|
|
|
(sha256
|
gnu: KDE Multimedia: Update to 22.04.3.
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, elisa,
ffmpegthumbs, juk, k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc):
Update to 22.04.3.
Signed-off-by: Marius Bakke <marius@gnu.org>
2022-08-02 02:25:05 -04:00
|
|
|
|
(base32 "0fv9dbx74xs42iiw67bvjpxga0d126q2nfs8n4hiv3z2xda9n4ic"))))
|
2019-12-08 12:09:36 -05:00
|
|
|
|
(build-system qt-build-system)
|
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list extra-cmake-modules))
|
2019-12-08 12:09:36 -05:00
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list alsa-lib
|
|
|
|
|
kcoreaddons
|
|
|
|
|
ki18n
|
|
|
|
|
phonon
|
|
|
|
|
qtbase-5
|
|
|
|
|
solid))
|
gnu: KDE: Fix old cgit home-pages.
Fix all home-pages pointing to git-repos a cgit.kde.org, which is
gone, to now use the correct repo at invent.kde.org.
* gnu/packages/kde.scm (grantleetheme, kdiagram): Update home-page.
* gnu/packages/kde-frameworks.scm (kholidays): Likewise.
* gnu/packages/kde-internet.scm (libgravatar, libktorrent): Likewise.
* gnu/packages/kde-multimedia.scm (libkcddb, libkcompactdisc): Likewise.
* gnu/packages/kde-pim.scm (kblog, kdav, kdepim-apps-libs,
kdepim-runtime, keventviews, kincidenceeditor, kmailcommon,
kmailimporter, kmessagelib, kpimcommon, ksmtp, libkdepim, libkgapi,
libkleo, libksieve): Likewise.
* gnu/packages/kde-plasma.scm (kdecoration, kscreenlocker): Likewise.
2020-12-12 12:22:37 -05:00
|
|
|
|
(home-page "https://invent.kde.org/multimedia/libkcompactdisc")
|
2019-12-08 12:09:36 -05:00
|
|
|
|
(synopsis "KDE library for playing & ripping CDs")
|
gnu: Reword and extend descriptions for some KDE packages.
* gnu/packages/kde-multimedia.scm (libkcompatdisc)[description]: Extend.
* gnu/packages/kde-pim.scm (akonadi-search, kalarmcal, kdemailimporter,
kdepim-apps-libs, kidentitymanagement, kldap, kmailtransport, kmbox, kmime,
kontactinterface, kpimtextedit)[description]: Reword and extend.
(ktnef, kpimcommon, libkdepim)[synopsis, description]: Reword and extend.
(kmailtransport)[synopsis]: Fix space.
* gnu/packages/kde-systemtools.scm (khelpcenter)[description]: Extend.
2020-03-01 11:13:49 -05:00
|
|
|
|
(description "The KDE Compact Disc library provides an API for
|
|
|
|
|
applications using the KDE Platform to interface with the CD drives for audio
|
|
|
|
|
CDs.")
|
2019-12-08 12:09:36 -05:00
|
|
|
|
(license ;; GPL for programs, LGPL for libraries
|
|
|
|
|
(list license:gpl2+ license:lgpl2.0+))))
|