summaryrefslogtreecommitdiff
path: root/gnu/packages/disk.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/disk.scm')
-rw-r--r--gnu/packages/disk.scm28
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/disk.scm b/gnu/packages/disk.scm
index 6a7fdcfb198..22fdd290a06 100644
--- a/gnu/packages/disk.scm
+++ b/gnu/packages/disk.scm
@@ -1,5 +1,6 @@
1;;; GNU Guix --- Functional package management for GNU 1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2012, 2013 Nikita Karetnikov <nikita@karetnikov.org> 2;;; Copyright © 2012, 2013 Nikita Karetnikov <nikita@karetnikov.org>
3;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
3;;; 4;;;
4;;; This file is part of GNU Guix. 5;;; This file is part of GNU Guix.
5;;; 6;;;
@@ -119,3 +120,30 @@ from one file to another, working to rescue data in case of read errors. The
119program also includes a tool for manipulating its log files, which are used 120program also includes a tool for manipulating its log files, which are used
120to recover data more efficiently by only reading the necessary blocks.") 121to recover data more efficiently by only reading the necessary blocks.")
121 (license gpl3+))) 122 (license gpl3+)))
123
124(define-public dosfstools
125 (package
126 (name "dosfstools")
127 (version "3.0.27")
128 (source
129 (origin
130 (method url-fetch)
131 (uri (string-append "https://github.com/" name "/" name
132 "/releases/download/v" version "/"
133 name "-" version ".tar.xz"))
134 (sha256
135 (base32
136 "1a2qs5g2zqbk1gzaaf4v3fw3yny6jgbzddpgcamkp3fjifn8wxl5"))))
137 (build-system gnu-build-system)
138 (arguments
139 `(#:make-flags (list (string-append "PREFIX=" %output)
140 "CC=gcc")
141 #:tests? #f ;no tests
142 #:phases (modify-phases %standard-phases
143 (delete 'configure))))
144 (home-page "https://github.com/dosfstools/dosfstools")
145 (synopsis "Utilities for making and checking MS-DOS FAT filesystems")
146 (description
147 "The dosfstools package includes the mkfs.fat and fsck.fat utilities,
148which respectively make and check MS-DOS FAT filesystems.")
149 (license gpl3+)))