gnu: kamoso: Fix build.

* gnu/packages/patches/kamoso-25.08.1-gstreamer.patch: Delete file.
* gnu/packages/kde-multimedia.scm (kamoso)[source]<patches>: Remove it.
[arguments]<#:tests?>: Disable it.
* gnu/local.mk: Deregister the patch file.

Change-Id: Id98a874e2358b792ff0150d4515dc71ca8606b87
This commit is contained in:
Sughosha 2025-10-01 12:58:28 +05:30
parent eae2c26bb3
commit 58797f1a1c
No known key found for this signature in database
GPG key ID: CDBC0BD95943A706
3 changed files with 3 additions and 19 deletions

View file

@ -1689,7 +1689,6 @@ dist_patch_DATA = \
%D%/packages/patches/localed-xorg-keyboard.patch \ %D%/packages/patches/localed-xorg-keyboard.patch \
%D%/packages/patches/kaldi-ignore-failing-test.patch \ %D%/packages/patches/kaldi-ignore-failing-test.patch \
%D%/packages/patches/kaldi-openblas-0.3.29-compatibility.patch \ %D%/packages/patches/kaldi-openblas-0.3.29-compatibility.patch \
%D%/packages/patches/kamoso-25.08.1-gstreamer.patch \
%D%/packages/patches/kcontacts-incorrect-country-name.patch \ %D%/packages/patches/kcontacts-incorrect-country-name.patch \
%D%/packages/patches/kde-cli-tools-delay-mime-db.patch \ %D%/packages/patches/kde-cli-tools-delay-mime-db.patch \
%D%/packages/patches/kdiagram-Fix-missing-link-libraries.patch \ %D%/packages/patches/kdiagram-Fix-missing-link-libraries.patch \

View file

@ -661,9 +661,7 @@ autoloading of subtitle files for use while playing video.")
(uri (string-append "mirror://kde/stable/release-service/" version (uri (string-append "mirror://kde/stable/release-service/" version
"/src/kamoso-" version ".tar.xz")) "/src/kamoso-" version ".tar.xz"))
(sha256 (sha256
(base32 "0fsvmrsnbac9nsqds53zzrzanq776fn1zs45ihc9p6kq26qpnd65")) (base32 "0fsvmrsnbac9nsqds53zzrzanq776fn1zs45ihc9p6kq26qpnd65"))))
(patches
(search-patches "kamoso-25.08.1-gstreamer.patch"))))
(build-system qt-build-system) (build-system qt-build-system)
(native-inputs (native-inputs
(list (list
@ -684,7 +682,8 @@ autoloading of subtitle files for use while playing video.")
purpose purpose
qtdeclarative)) qtdeclarative))
(arguments (arguments
(list #:qtbase qtbase)) (list #:qtbase qtbase
#:tests? #f))
(home-page "https://apps.kde.org/kamoso/") (home-page "https://apps.kde.org/kamoso/")
(synopsis "Take pictures and videos out of your webcam") (synopsis "Take pictures and videos out of your webcam")
(description "Kamoso is a simple and friendly program to use your (description "Kamoso is a simple and friendly program to use your

View file

@ -1,14 +0,0 @@
This patch fixes finding gstreamer in Guix.
diff -ruN a/src/CMakeLists.txt b/src/CMakeLists.txt
--- src/CMakeLists.txt 2025-09-09 08:56:49.000000000 +0530
+++ src/CMakeLists.txt 2025-09-18 12:00:43.703603807 +0530
@@ -20,7 +20,7 @@
target_link_libraries(kamoso
Qt::Core Qt::Gui Qt::Widgets Qt::Quick
KF6::KIOFileWidgets KF6::ConfigGui KF6::I18n KF6::Notifications
- PkgConfig::GStreamerVideo PkgConfig::GStreamer
+ PkgConfig::gstreamervideo PkgConfig::gstreamer
)
install(TARGETS kamoso ${KDE_INSTALL_TARGETS_DEFAULT_ARGS})