diff options
author | Petr Hodina <phodina@protonmail.com> | 2022-09-24 18:59:58 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-11-21 22:01:14 +0100 |
commit | 853480957e9b2c2e2eed1683450cf4a2b7727d6d (patch) | |
tree | ba241076d4f2ee82dd8230355dc63e509967f589 /gnu/packages/kde-utils.scm | |
parent | 4033249e2e8482ba1d6270ee21306200e4dd3715 (diff) | |
download | guix-853480957e9b2c2e2eed1683450cf4a2b7727d6d.tar.gz |
gnu: Add basket.
* gnu/packages/kde-utils.scm (basket): New variable. Signed-off-by: Marius Bakke <marius@gnu.org>
Diffstat (limited to 'gnu/packages/kde-utils.scm')
-rw-r--r-- | gnu/packages/kde-utils.scm | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/gnu/packages/kde-utils.scm b/gnu/packages/kde-utils.scm index 2657c8aff5..642e9f457c 100644 --- a/gnu/packages/kde-utils.scm +++ b/gnu/packages/kde-utils.scm @@ -119,6 +119,52 @@ with support for multiple formats, including tar, gzip, bzip2, rar and zip, as well as CD-ROM images.") (license license:gpl2+))) +(define-public basket + (let ((commit "e23a8b3b1198d51f770523c7fb4652750810359a") + (revision "1")) + (package + (name "basket") + (version (git-version "2.49" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://invent.kde.org/utilities/basket") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1i7hrrlwyzzh7mm9xc8hjix24rvy1b2cvvbkhxh9mmdbmphwdhhd")))) + (build-system qt-build-system) + (native-inputs (list extra-cmake-modules)) + (inputs (list breeze-icons + karchive + kcompletion + kconfig + kconfigwidgets + kcoreaddons + kcrash + kdbusaddons + kdoctools + kfilemetadata + kglobalaccel + kguiaddons + ki18n + kiconthemes + kcmutils + kio + knotifications + kparts + kservice + ktextwidgets + kwidgetsaddons + kwindowsystem + kxmlgui + phonon)) + (home-page "https://invent.kde.org/utilities/basket") + (synopsis "Notes and to-dos organizer") + (description "This package provides simple note taking and to-do app.") + (license license:gpl2+)))) + (define-public kate (package (name "kate") |