gnu: Add usbmuxd.

* gnu/packages/libusb.scm (usbmuxd): New variable.
master
Danny Milosavljevic 2019-02-05 23:12:35 +01:00
parent bc4e8d3e64
commit fc80f54e29
No known key found for this signature in database
GPG Key ID: E71A35542C30BAA5
1 changed files with 26 additions and 0 deletions

View File

@ -409,6 +409,32 @@ music and video to the device.")
iOS devices and access their contents.")
(license license:lgpl2.1+)))
(define-public usbmuxd
(package
(name "usbmuxd")
(version "1.1.0")
(source (origin
(method url-fetch)
(uri (string-append "http://www.libimobiledevice.org/downloads/"
"usbmuxd-" version ".tar.bz2"))
(sha256
(base32
"0bdlc7a8plvglqqx39qqampqm6y0hcdws76l9dffwl22zss4i29y"))))
(inputs
`(("libplist" ,libplist)
("libusb" ,libusb)
("libimobiledevice" ,libimobiledevice)))
(native-inputs
`(("pkg-config" ,pkg-config)))
(build-system gnu-build-system)
(home-page "http://www.libimobiledevice.org/")
(synopsis "Multiplex connections over USB to an iOS device")
(description "This package provides the @code{usbmuxd} daemon
which multiplexes connections over USB to an iOS device. To
users, it means you can sync your music, contacts, photos, etc.
over USB.")
(license license:gpl2+)))
(define-public libmtp
(package
(name "libmtp")