diff options
author | Marius Bakke <mbakke@fastmail.com> | 2017-02-27 12:42:22 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2017-02-27 12:42:22 +0100 |
commit | 8779987bba029535d3dc00f1aacf59281fdd34f0 (patch) | |
tree | 7a6d616d45367d508f94c3593b1ce5c7053c33f5 /gnu/packages/disk.scm | |
parent | 1885bb0c08e943a2e0e37c5c0a83473c8af904d0 (diff) | |
parent | a6d9f8837b118e2126e4b8a19bf48b524229a15c (diff) | |
download | patches-8779987bba029535d3dc00f1aacf59281fdd34f0.tar patches-8779987bba029535d3dc00f1aacf59281fdd34f0.tar.gz |
Merge branch 'master' into python-tests
Diffstat (limited to 'gnu/packages/disk.scm')
-rw-r--r-- | gnu/packages/disk.scm | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/gnu/packages/disk.scm b/gnu/packages/disk.scm index 4cf9607a43..93895278d6 100644 --- a/gnu/packages/disk.scm +++ b/gnu/packages/disk.scm @@ -139,11 +139,17 @@ tables, and it understands a variety of different formats.") ;; no install target (replace 'install (lambda* (#:key outputs #:allow-other-keys) - (let ((bin (string-append (assoc-ref outputs "out") "/bin"))) + (let* ((out (assoc-ref outputs "out")) + (bin (string-append out "/bin")) + (man (string-append out "/share/man/man8"))) (install-file "gdisk" bin) (install-file "sgdisk" bin) (install-file "cgdisk" bin) - (install-file "fixparts" bin))))))) + (install-file "fixparts" bin) + (install-file "cgdisk.8" man) + (install-file "fixparts.8" man) + (install-file "gdisk.8" man) + (install-file "sgdisk.8" man))))))) (home-page "http://www.rodsbooks.com/gdisk/") (synopsis "Low-level GPT disk partitioning and formatting") (description "GPT fdisk (aka gdisk) is a text-mode partitioning tool that @@ -296,14 +302,14 @@ and can dramatically shorten the lifespan of the drive if left unchecked.") (define-public gparted (package (name "gparted") - (version "0.27.0") + (version "0.28.1") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/gparted/gparted/gparted-" version "/gparted-" version ".tar.gz")) (sha256 - (base32 "1gg7k63jd6128mmzciwqmgixqhyqnninimaqyvjbx1hv0q6gd310")))) + (base32 "0cyk8lpimm6wani8khw0szwqkgw5wpq2mfnfxkbgfm2774a1z2bn")))) (build-system gnu-build-system) (arguments `(#:tests? #f ; Tests require a network connection. |