diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-08-14 02:00:01 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-09-04 02:00:01 +0200 |
commit | 4078dcad56043b1c7a1a6b179be6702ed17b0422 (patch) | |
tree | f16ce7a12e04f7cc0640344d1809445fbdb8cc60 | |
parent | 3523e8e97539efe3e3fa2d06f970b763b8bde542 (diff) | |
download | guix-4078dcad56043b1c7a1a6b179be6702ed17b0422.tar.gz |
gnu: gparted: Update to 1.4.0.
* gnu/packages/disk.scm (gparted): Update to 1.4.0.
-rw-r--r-- | gnu/packages/disk.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/disk.scm b/gnu/packages/disk.scm index 60605417a9..818ca065b8 100644 --- a/gnu/packages/disk.scm +++ b/gnu/packages/disk.scm @@ -573,18 +573,18 @@ and can dramatically shorten the lifespan of the drive if left unchecked.") (define-public gparted (package (name "gparted") - (version "1.3.1") + (version "1.4.0") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/gparted/gparted/gparted-" version "/gparted-" version ".tar.gz")) (sha256 - (base32 "02g1s6hrhnias7kj241l0f72kllfhq6338mk2dmzjpmifinjxvjy")))) + (base32 "1gl7g1lg72s63a9xlc4kcc6ksq6r7h8k9a6456xbxzak5rwklag5")))) (build-system glib-or-gtk-build-system) (arguments - ;; Tests require access to paths outside the build container, such - ;; as '/dev/disk/by-id' + ;; Tests require access to files outside the build container, such + ;; as ‘/dev/disk/by-id/’. `(#:tests? #f)) (inputs (list `(,util-linux "lib") parted glib gtkmm-3 libxml2)) |