mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: exfat-utils: Move to (gnu packages file-systems).
* gnu/packages/mtools.scm (exfat-utils): Move from here… * gnu/packages/file-systems.scm (exfat-utils): …to here.
This commit is contained in:
parent
b8418eeed4
commit
f378f1d05f
2 changed files with 21 additions and 21 deletions
|
@ -320,6 +320,27 @@ always possible.")
|
|||
(license (list license:bsd-2 ; src/fuse_kernel.h
|
||||
license:gpl3+)))) ; everything else
|
||||
|
||||
(define-public exfat-utils
|
||||
(package
|
||||
(name "exfat-utils")
|
||||
(version "1.3.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"https://github.com/relan/exfat/releases/download/v"
|
||||
version "/exfat-utils-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0da8f8mm1sbwqp7prh78qk33xm0b8kk2d5is7mh2szlhgdxd1syz"))))
|
||||
(build-system gnu-build-system)
|
||||
(home-page "https://github.com/relan/exfat")
|
||||
(synopsis "Utilities to manipulate exFAT file systems")
|
||||
(description
|
||||
"This package provides an implementation of the exFAT file system,
|
||||
including command-line tools to validate exFAT file systems and to create new
|
||||
ones.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public fsarchiver
|
||||
(package
|
||||
(name "fsarchiver")
|
||||
|
|
|
@ -48,24 +48,3 @@ or Unix system. It supports long file names and multiple disk formats. It
|
|||
also supports some FAT-specific features such as volume labels and
|
||||
FAT-specific file attributes.")
|
||||
(license gpl3+)))
|
||||
|
||||
(define-public exfat-utils
|
||||
(package
|
||||
(name "exfat-utils")
|
||||
(version "1.3.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"https://github.com/relan/exfat/releases/download/v"
|
||||
version "/" name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0da8f8mm1sbwqp7prh78qk33xm0b8kk2d5is7mh2szlhgdxd1syz"))))
|
||||
(build-system gnu-build-system)
|
||||
(home-page "https://github.com/relan/exfat")
|
||||
(synopsis "Utilities to manipulate exFAT file systems")
|
||||
(description
|
||||
"This package provides an implementation of the exFAT file system,
|
||||
including command-line tools to validate exFAT file systems and to create new
|
||||
ones.")
|
||||
(license gpl2+)))
|
||||
|
|
Loading…
Reference in a new issue