mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add usbmuxd.
* gnu/packages/libusb.scm (usbmuxd): New variable.
This commit is contained in:
parent
bc4e8d3e64
commit
fc80f54e29
1 changed files with 26 additions and 0 deletions
|
@ -409,6 +409,32 @@ (define-public ifuse
|
|||
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")
|
||||
|
|
Loading…
Reference in a new issue