mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: kamoso: Update to 25.08.1.
* gnu/packages/patches/kamoso-25.08.1-gstreamer.patch: New file. * gnu/packages/kde-multimedia.scm (kamoso): Update to 25.08.1. [source]<patches>: Add it. * gnu/local.mk: Register it. Change-Id: I37c69d99fe4023efe6f7050ef2b42d2cba6bc805
This commit is contained in:
parent
2af9580dfd
commit
e81d5190e7
3 changed files with 29 additions and 17 deletions
|
@ -1689,6 +1689,7 @@ 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 \
|
||||||
|
|
|
@ -570,40 +570,37 @@ autoloading of subtitle files for use while playing video.")
|
||||||
(define-public kamoso
|
(define-public kamoso
|
||||||
(package
|
(package
|
||||||
(name "kamoso")
|
(name "kamoso")
|
||||||
(version "24.12.1")
|
(version "25.08.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(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 "0p180rj23f7fv3mamx1jmvarp2fiah00p7ph1yirnnsv8m28gwf4"))))
|
(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
|
||||||
extra-cmake-modules
|
extra-cmake-modules
|
||||||
`(,glib "bin")
|
`(,glib "bin")
|
||||||
kdoctools-5
|
kdoctools
|
||||||
pkg-config))
|
pkg-config))
|
||||||
(inputs
|
(inputs
|
||||||
(list gstreamer
|
(list gstreamer
|
||||||
gst-plugins-base
|
gst-plugins-base
|
||||||
kconfig-5
|
kconfig
|
||||||
ki18n-5
|
ki18n
|
||||||
kio-5
|
kio
|
||||||
kirigami-5
|
kirigami
|
||||||
knotifications-5
|
knotifications
|
||||||
kparts-5
|
kparts
|
||||||
breeze-icons ; default icon set
|
breeze-icons ; default icon set
|
||||||
purpose-5
|
purpose
|
||||||
qtbase-5
|
qtdeclarative))
|
||||||
qtdeclarative-5
|
|
||||||
qtgraphicaleffects
|
|
||||||
qtquickcontrols-5
|
|
||||||
qtquickcontrols2-5 ; not listed as dependency
|
|
||||||
qtx11extras))
|
|
||||||
(arguments
|
(arguments
|
||||||
(list #:tests? #f)) ; test program gets built, but is not found
|
(list #:qtbase qtbase))
|
||||||
(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
|
||||||
|
|
14
gnu/packages/patches/kamoso-25.08.1-gstreamer.patch
Normal file
14
gnu/packages/patches/kamoso-25.08.1-gstreamer.patch
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
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})
|
Loading…
Add table
Add a link
Reference in a new issue