guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: Add fuseiso.


From: guix-commits
Subject: 01/01: gnu: Add fuseiso.
Date: Wed, 6 Mar 2019 10:24:53 -0500 (EST)

ambrevar pushed a commit to branch master
in repository guix.

commit 1564e0fefa0ccab7a4c350a158806e59274e8ea1
Author: Pierre Neidhardt <address@hidden>
Date:   Wed Mar 6 16:23:46 2019 +0100

    gnu: Add fuseiso.
    
    * gnu/packages/linux.scm (fuseiso): New variable.
---
 gnu/packages/linux.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 7ee139b..61b0e63 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -3254,6 +3254,32 @@ is flexible, efficient and uses a modular 
implementation.")
 write access to exFAT devices.")
     (license license:gpl2+)))
 
+(define-public fuseiso
+  (package
+    (name "fuseiso")
+    (version "20070708")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://sourceforge/fuseiso/fuseiso/"
+                                  version "/fuseiso-" version ".tar.bz2"))
+              (sha256
+               (base32
+                "127xql52dcdhmh7s5m9xc6q39jdlj3zhbjar1j821kb6gl3jw94b"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (inputs
+     `(("fuse" ,fuse)
+       ("glib" ,glib)
+       ("zlib" ,zlib)))
+    (home-page "https://sourceforge.net/projects/fuseiso/";)
+    (synopsis "Mount ISO file system imsages")
+    (description
+     "FuseISO is a FUSE module to mount ISO filesystem images (.iso, .nrg,
+.bin, .mdf and .img files).  It currently support plain ISO9660 Level 1 and 2,
+Rock Ridge, Joliet, and zisofs.")
+    (license license:gpl2)))
+
 (define-public gpm
   (package
     (name "gpm")



reply via email to

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