This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 2a6119aafb gnu: Add kdesdk-thumbnailers.
2a6119aafb is described below
commit 2a6119aafbdd5da4a66c804e90c6a7cb03a0a99e
Author: Sughosha <[email protected]>
AuthorDate: Sat Mar 7 16:38:11 2026 +0530
gnu: Add kdesdk-thumbnailers.
* gnu/packages/kde-sdk.scm (kdesdk-thumbnailers): New variable.
Change-Id: Ie66bab551d85ed38e94c675cfc63edeaddad075d
---
gnu/packages/kde-sdk.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/kde-sdk.scm b/gnu/packages/kde-sdk.scm
index d25859b27f..d3f2e5ef71 100644
--- a/gnu/packages/kde-sdk.scm
+++ b/gnu/packages/kde-sdk.scm
@@ -186,6 +186,30 @@ performance counters. There also exist converters for
profiling output of
Python, PHP, and Perl.")
(license license:gpl2)))
+(define-public kdesdk-thumbnailers
+ (package
+ (name "kdesdk-thumbnailers")
+ (version "25.12.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/release-service/" version
+ "/src/kdesdk-thumbnailers-" version ".tar.xz"))
+ (sha256
+ (base32 "17brrk20w32x6dqjqrqm2vgzhnhk2lpbzyay5k6cxsqsra0fbxvz"))))
+ (build-system cmake-build-system)
+ (arguments
+ (list #:tests? #f)) ;no tests
+ (native-inputs
+ (list extra-cmake-modules))
+ (inputs
+ (list gettext-minimal kio qtbase))
+ (home-page "https://invent.kde.org/sdk/kdesdk-thumbnailers")
+ (synopsis "Plugins for the thumbnailing system")
+ (description "This package provides thumbnailer plugins for Gettext
+Translation (.po) files.")
+ (license license:gpl3+)))
+
(define-public kdevelop-pg-qt
(package
(name "kdevelop-pg-qt")