gnu: Add ifuse.
authorDanny Milosavljevic <dannym@scratchpost.org>
Tue, 5 Feb 2019 21:33:21 +0000 (22:33 +0100)
committerDanny Milosavljevic <dannym@scratchpost.org>
Fri, 8 Feb 2019 15:44:51 +0000 (16:44 +0100)
* gnu/packages/libusb.scm (ifuse): New variable.

gnu/packages/libusb.scm

index ce4c285..ff3e14d 100644 (file)
@@ -368,7 +368,7 @@ connections from and to iOS devices by connecting to a socket provided by a
                             "m"))))
     (propagated-inputs
      `(("openssl" ,openssl)
-       ("libplist" ,libplist) ; libimobiledevice's ".pc" file requires it.
+       ("libplist" ,libplist)
        ("libusbmuxd" ,libusbmuxd)))
     (inputs
      `(("python" ,python)))
@@ -386,6 +386,29 @@ addressbook/calendars/notes and bookmarks and (using libgpod) synchronize
 music and video to the device.")
     (license license:lgpl2.1+)))
 
+(define-public ifuse
+  (package
+    (name "ifuse")
+    (version "1.1.3")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "http://www.libimobiledevice.org/downloads/"
+                                  "ifuse-" version ".tar.bz2"))
+              (sha256
+               (base32
+                "1p9a4n36jb194cnp6v57cz2bggwbywaz8pbpb95ch83pzdkdx257"))))
+    (inputs
+     `(("fuse" ,fuse)
+       ("libimobiledevice" ,libimobiledevice)))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (build-system gnu-build-system)
+    (home-page "http://www.libimobiledevice.org/")
+    (synopsis "Mount iOS devices")
+    (description "This package provides @command{ifuse}, a command to mount
+iOS devices and access their contents.")
+    (license license:lgpl2.1+)))
+
 (define-public libmtp
   (package
     (name "libmtp")