diff options
author | Sughosha <sughosha@disroot.org> | 2025-01-12 18:10:17 +0530 |
---|---|---|
committer | Zheng Junjie <z572@z572.online> | 2025-02-13 13:49:06 +0800 |
commit | 4c05f513fdc225c1b5cdb7f2f61aab5d30bcbfe5 (patch) | |
tree | 24ae98b683ad5371bc88955105e948d10cfd5047 | |
parent | 4f9a1406f2396259bf2eaf22b36d86646d03068c (diff) | |
download | guix-4c05f513fdc225c1b5cdb7f2f61aab5d30bcbfe5.tar.gz guix-4c05f513fdc225c1b5cdb7f2f61aab5d30bcbfe5.zip |
gnu: Add partitionmanager.
* gnu/packages/kde.scm (partitionmanager): New variable.
Change-Id: I2bd1df994274397ecd92dd78d84954d97fe75f5a
Signed-off-by: Zheng Junjie <z572@z572.online>
-rw-r--r-- | gnu/packages/kde.scm | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm index 262060852e..7a7c7f8f10 100644 --- a/gnu/packages/kde.scm +++ b/gnu/packages/kde.scm @@ -1321,6 +1321,45 @@ multi-floor indoor maps.") (description "Library for managing partitions.") (license license:gpl3+))) +(define-public partitionmanager + (package + (name "partitionmanager") + (version "24.05.2") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/release-service/" version + "/src/partitionmanager-" version ".tar.xz")) + (sha256 + (base32 "01xmwkwv8jrwx2jpg797ar8ac9gbdagrl2v3yzqn62fhwcwjcxy6")))) + (build-system qt-build-system) + (arguments + (list #:qtbase qtbase)) + (native-inputs + (list extra-cmake-modules kdoctools)) + (inputs + (list kconfig + kconfigwidgets + kcoreaddons + kcrash + kdbusaddons + ki18n + kio + kjobwidgets + kpmcore + kwidgetsaddons + kwindowsystem + kxmlgui + polkit-qt6)) + (home-page "https://apps.kde.org/partitionmanager/") + (synopsis "Disk device, partition and file system manager") + (description "KDE Partition Manager is a utility to help you manage the +disks, partitions, and file systems. It allows you to easily create, copy, +move, delete, back up, restore, and resize them without losing data. It +supports a large number of file systems, including ext2/3/4, btrfs, NTFS, +FAT16/32, JFS, XFS and more.") + (license license:gpl3+))) + (define-public kpublictransport (package (name "kpublictransport") |