guix_mirror_bot pushed a commit to branch kde-team
in repository guix.

commit c3c3a3a67396c601fb24629a7f9fec31af11b5e8
Author: Sughosha <[email protected]>
AuthorDate: Fri Oct 3 04:57:16 2025 +0530

    gnu: phonon-backend-gstreamer: Move to kde-multimedia.scm.
    
    * gnu/packages/kde-frameworks.scm (phonon-backend-gstreamer): Remove 
variable.
    * gnu/packages/kde-multimedia.scm (phonon-backend-gstreamer): New variable.
    
    Change-Id: Ic5b2e00a3fcd0095fbab4228ceff0a26b39c84fc
---
 gnu/packages/kde-frameworks.scm | 34 ----------------------------------
 gnu/packages/kde-multimedia.scm | 34 ++++++++++++++++++++++++++++++++++
 2 files changed, 34 insertions(+), 34 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index a5671efb77..848a632daf 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -270,40 +270,6 @@ continuous display of high-volume data.")
 image editing capabilities.")
     (license license:lgpl2.1+)))
 
-(define-public phonon-backend-gstreamer
-  (package
-    (name "phonon-backend-gstreamer")
-    (version "4.10.0")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append
-                    "mirror://kde/stable/phonon/"
-                    name "/" version "/"
-                    name "-" version ".tar.xz"))
-              (sha256
-               (base32
-                "1wk1ip2w7fkh65zk6rilj314dna0hgsv2xhjmpr5w08xa8sii1y5"))))
-    (build-system cmake-build-system)
-    (native-inputs
-     (list extra-cmake-modules pkg-config qttools-5))
-    (inputs
-     (list phonon
-           qtbase-5
-           qtx11extras
-           gstreamer
-           gst-plugins-base
-           libxml2))
-    (arguments
-     `(#:tests? #f
-       #:configure-flags
-       '( "-DPHONON_BUILD_PHONON4QT5=ON")))
-    (home-page "https://community.kde.org/Phonon";)
-    (synopsis "Phonon backend which uses GStreamer")
-    (description "Phonon makes use of backend libraries to provide sound.
-Phonon-GStreamer is a backend based on the GStreamer multimedia library.")
-    ;; license: source files mention "either version 2.1 or 3"
-    (license (list license:lgpl2.1 license:lgpl3))))
-
 (define-public phonon-backend-vlc
   (package
     (name "phonon-backend-vlc")
diff --git a/gnu/packages/kde-multimedia.scm b/gnu/packages/kde-multimedia.scm
index 9cd0926b90..a7c0826f11 100644
--- a/gnu/packages/kde-multimedia.scm
+++ b/gnu/packages/kde-multimedia.scm
@@ -89,6 +89,40 @@
     (description "KDE's multimedia library.")
     (license license:lgpl2.1+)))
 
+(define-public phonon-backend-gstreamer
+  (package
+    (name "phonon-backend-gstreamer")
+    (version "4.10.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/phonon/"
+                    name "/" version "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "1wk1ip2w7fkh65zk6rilj314dna0hgsv2xhjmpr5w08xa8sii1y5"))))
+    (build-system cmake-build-system)
+    (native-inputs
+     (list extra-cmake-modules pkg-config qttools-5))
+    (inputs
+     (list phonon
+           qtbase-5
+           qtx11extras
+           gstreamer
+           gst-plugins-base
+           libxml2))
+    (arguments
+     `(#:tests? #f
+       #:configure-flags
+       '( "-DPHONON_BUILD_PHONON4QT5=ON")))
+    (home-page "https://community.kde.org/Phonon";)
+    (synopsis "Phonon backend which uses GStreamer")
+    (description "Phonon makes use of backend libraries to provide sound.
+Phonon-GStreamer is a backend based on the GStreamer multimedia library.")
+    ;; license: source files mention "either version 2.1 or 3"
+    (license (list license:lgpl2.1 license:lgpl3))))
+
 (define-public audiocd-kio
   (package
     (name "audiocd-kio")

Reply via email to