gnu: Add confusion-mdl.
[jackhill/guix/guix.git] / gnu / packages / mtools.scm
CommitLineData
addfc3fc
JD
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2013 John Darrington <jmd@gnu.org>
8f43d1ba 3;;; Copyright © 2015 Ludovic Courtès <ludo@gnu.org>
e98d1d2a 4;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
addfc3fc
JD
5;;;
6;;; This file is part of GNU Guix.
7;;;
8;;; GNU Guix is free software; you can redistribute it and/or modify it
9;;; under the terms of the GNU General Public License as published by
10;;; the Free Software Foundation; either version 3 of the License, or (at
11;;; your option) any later version.
12;;;
13;;; GNU Guix is distributed in the hope that it will be useful, but
14;;; WITHOUT ANY WARRANTY; without even the implied warranty of
15;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16;;; GNU General Public License for more details.
17;;;
18;;; You should have received a copy of the GNU General Public License
19;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
20
21(define-module (gnu packages mtools)
22 #:use-module (guix licenses)
23 #:use-module (guix packages)
24 #:use-module (guix download)
88a46c98 25 #:use-module (guix build-system gnu))
addfc3fc
JD
26
27(define-public mtools
28 (package
29 (name "mtools")
30 (version "4.0.18")
31 (source
32 (origin
33 (method url-fetch)
34 (uri (string-append "mirror://gnu/mtools/mtools-"
35 version ".tar.gz"))
36 (sha256
37 (base32
38 "1hxciksv7av5ilnkvwbidyxxr1gzn24lr0mz9z8drkml7780im1h"))))
39 (build-system gnu-build-system)
40 (home-page "https://www.gnu.org/software/mtools/")
41 (synopsis "Access MS-DOS disks without mounting")
42 (description
43 "GNU Mtools is a set of utilities for accessing MS-DOS disks from a GNU
44or Unix system. It supports long file names and multiple disk formats. It
45also supports some FAT-specific features such as volume labels and
46FAT-specific file attributes.")
47 (license gpl3+)))
8f43d1ba
LC
48
49(define-public exfat-utils
50 (package
51 (name "exfat-utils")
e98d1d2a 52 (version "1.2.8")
8f43d1ba
LC
53 (source (origin
54 (method url-fetch)
3b0f2ba4
TGR
55 (uri (string-append
56 "https://github.com/relan/exfat/releases/download/v"
57 version "/" name "-" version ".tar.gz"))
8f43d1ba
LC
58 (sha256
59 (base32
e98d1d2a 60 "09yf41mgwp8wg0psq347d5razllilx1sd4ij9173nri47p9465jw"))))
8f43d1ba 61 (build-system gnu-build-system)
3b0f2ba4 62 (home-page "https://github.com/relan/exfat")
8f43d1ba
LC
63 (synopsis "Utilities to manipulate exFAT file systems")
64 (description
65 "This package provides an implementation of the exFAT file system,
66including command-line tools to validate exFAT file systems and to create new
67ones.")
68 (license gpl2+)))