From e10e5f691d0a334187eab269b8164a753167036a Mon Sep 17 00:00:00 2001 From: Petr Hodina Date: Mon, 26 Sep 2022 17:41:20 +0200 Subject: gnu: Add kbackup. * gnu/packages/kde-utils.scm (kbackup): New variable. Signed-off-by: Marius Bakke --- gnu/packages/kde-utils.scm | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) 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 @@ (define-public kdebugsettings "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") -- cgit v1.2.3