diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2019-12-06 21:46:24 +0100 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2019-12-26 16:44:53 +0100 |
commit | d1a6a94650804fe601e56faa9cdae115e3353f7b (patch) | |
tree | 93985e09f641101fca45f3d5931e6dc451705396 /gnu/packages/kde-multimedia.scm | |
parent | a5eddcd00ff8acf63386d450d12583ccb3b9df24 (diff) | |
download | guix-d1a6a94650804fe601e56faa9cdae115e3353f7b.tar guix-d1a6a94650804fe601e56faa9cdae115e3353f7b.tar.gz |
gnu: Add libkcddb.
* gnu/packages/kde-multimedia.scm (libkcddb): New variable.
Diffstat (limited to 'gnu/packages/kde-multimedia.scm')
-rw-r--r-- | gnu/packages/kde-multimedia.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/kde-multimedia.scm b/gnu/packages/kde-multimedia.scm index e637376549..c798e04449 100644 --- a/gnu/packages/kde-multimedia.scm +++ b/gnu/packages/kde-multimedia.scm @@ -194,3 +194,34 @@ from .WAV and .MP3 audio files, configuring external programs and configuring devices.") (license ;; GPL for programs, FDL for documentation (list license:gpl2+ license:fdl1.2+)))) + +(define-public libkcddb + (package + (name "libkcddb") + (version "19.08.3") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/applications/" version + "/src/libkcddb-" version ".tar.xz")) + (sha256 + (base32 "1rla9sfzpdfiki0p265ga6d1axqpq37825maaw85hm84mg7hkzjn")))) + (build-system qt-build-system) + (native-inputs + `(("extra-cmake-modules" ,extra-cmake-modules) + ("kdoctools" ,kdoctools))) + (inputs + `(("kcodecs" ,kcodecs) + ("kconfig" ,kconfig) + ("ki18n" ,ki18n) + ("kio" ,kio) + ("kwidgetsaddons" ,kwidgetsaddons) + ("libmusicbrainz" ,libmusicbrainz) + ("qtbase" ,qtbase))) + (arguments + `(#:tests? #f)) ; Most tests require network + (home-page "https://cgit.kde.org/libkcddb.git") + (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+)))) |