bug-guix
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#40669: [PATCH] gnu: Add exfatprogs.


From: Tobias Geerinckx-Rice
Subject: bug#40669: [PATCH] gnu: Add exfatprogs.
Date: Thu, 16 Apr 2020 23:58:37 +0200

* gnu/packages/file-systems.scm (exfatprogs): New public variable.
---

Leo,

Here 't is.  Boring, but avoids you some duplicate busywork.

> New "official" package

I'm not…  I'm really not biting, you know.  Nope.  Nein!

Enjoy,

T G-R

 gnu/packages/file-systems.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/file-systems.scm b/gnu/packages/file-systems.scm
index b5ca37d43e..1e4464e22f 100644
--- a/gnu/packages/file-systems.scm
+++ b/gnu/packages/file-systems.scm
@@ -113,6 +113,37 @@ caching system, and lets you assign different roles to 
each device based on its
 performance and other characteristics.")
       (license license:gpl2+))))
 
+(define-public exfatprogs
+  (package
+    (name "exfatprogs")
+    (version "1.0.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/exfatprogs/exfatprogs";)
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0ndc0vsf5m7n79fjxhkg1qw3gy9zdpx2jrdgl0dqjr6cm06jd0b5"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:configure-flags
+       (list "--disable-static")))
+    (native-inputs
+     `(("autoconf" ,autoconf)
+       ("automake" ,automake)
+       ("libtool" ,libtool)
+       ("pkg-config" ,pkg-config)))
+    (home-page "https://github.com/exfatprogs/exfatprogs";)
+    (synopsis "Tools to create, check, and repair exFAT file systems")
+    (description
+     "These are command-line user space tools for the @acronym{exFAT,
+Extensible File Allocation Table} file systems.  Included are
+@command{mkfs.exfat} to create (format) new exFAT file systems, and
+@command{fsck.exfat} to check their consistency and repair them.")
+    (license license:gpl2+)))
+
 (define-public httpfs2
   (package
     (name "httpfs2")
-- 
2.25.2






reply via email to

[Prev in Thread] Current Thread [Next in Thread]