diff options
| author | Sughosha <sughosha@disroot.org> | 2026-03-07 16:38:11 +0530 |
|---|---|---|
| committer | Sughosha <sughosha@disroot.org> | 2026-03-07 16:47:08 +0530 |
| commit | 2a6119aafbdd5da4a66c804e90c6a7cb03a0a99e (patch) | |
| tree | 877d63b3621776b08fca5d3aaee9beb602d3dbdc | |
| parent | e994eb8b648464dbcb409c20c7fd8e0b7972b689 (diff) | |
gnu: Add kdesdk-thumbnailers.
* gnu/packages/kde-sdk.scm (kdesdk-thumbnailers): New variable.
Change-Id: Ie66bab551d85ed38e94c675cfc63edeaddad075d
| -rw-r--r-- | gnu/packages/kde-sdk.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/kde-sdk.scm b/gnu/packages/kde-sdk.scm index d25859b27f3..d3f2e5ef71d 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") |
