diff options
author | Petr Hodina <phodina@protonmail.com> | 2022-09-26 17:41:20 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-11-21 22:01:16 +0100 |
commit | e10e5f691d0a334187eab269b8164a753167036a (patch) | |
tree | 647d701fc0a7004eb079ac5d42bc07b4049ba54f | |
parent | 319c7712f67b5d37e2d588f44aca65b0fffdd061 (diff) | |
download | guix-e10e5f691d0a334187eab269b8164a753167036a.tar.gz guix-e10e5f691d0a334187eab269b8164a753167036a.zip |
gnu: Add kbackup.
* gnu/packages/kde-utils.scm (kbackup): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org>
-rw-r--r-- | gnu/packages/kde-utils.scm | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/gnu/packages/kde-utils.scm b/gnu/packages/kde-utils.scm index 67ba0b9568..abdac5b07c 100644 --- a/gnu/packages/kde-utils.scm +++ b/gnu/packages/kde-utils.scm @@ -425,6 +425,41 @@ Kate's features include: "This package allows to select which QLoggingCategory are displayed.") (license license:lgpl2.0+))) +(define-public kbackup + (package + (name "kbackup") + (version "22.08.1") + (source (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/release-service/" + version "/src/kbackup-" version ".tar.xz")) + (sha256 + (base32 + "0c0zdk00j9qssjdb5dg5hwc5mx7h5kvriyszia2xizqjq2m53c3k")))) + (build-system qt-build-system) + (native-inputs (list extra-cmake-modules)) + (inputs (list kguiaddons + knotifications + ki18n + kio + kxmlgui + kiconthemes + karchive + kwidgetsaddons + shared-mime-info)) + (home-page "https://apps.kde.org/kbackup/") + (synopsis "Backup program with an easy-to-use interface") + (description + "This package provides tool to backup your data. +@itemize +@item profile for directories and files to be included or excluded from the +backup +@item The backup target can be either a locally mounted device like a ZIP +drive, USB stick, etc +@item Running automated backups without using a graphical user interface +@end itemize") + (license license:gpl2+))) + (define-public kdialog (package (name "kdialog") |