diff options
author | Danny Milosavljevic <dannym@scratchpost.org> | 2019-02-05 22:33:21 +0100 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2019-02-08 16:44:51 +0100 |
commit | bc4e8d3e64b1e654d3f77d0aaabf962656aab3fa (patch) | |
tree | 11aa9c4abc741f2e652dda1079576528937e307f /gnu | |
parent | 6d0b50f6510dbe7c7724cee21155e09bb0b36402 (diff) | |
download | guix-bc4e8d3e64b1e654d3f77d0aaabf962656aab3fa.tar guix-bc4e8d3e64b1e654d3f77d0aaabf962656aab3fa.tar.gz |
gnu: Add ifuse.
* gnu/packages/libusb.scm (ifuse): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/libusb.scm | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/gnu/packages/libusb.scm b/gnu/packages/libusb.scm index ce4c28506c..ff3e14d5da 100644 --- a/gnu/packages/libusb.scm +++ b/gnu/packages/libusb.scm @@ -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") |