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