me
/
guix
Archived
1
0
Fork 0

gnu: Add libirecovery.

* gnu/packages/libusb.scm (libirecovery): New variable.

Signed-off-by: Julien Lepiller <julien@lepiller.eu>
master
Jacob Hrbek 2022-09-22 21:18:35 +02:00 committed by Julien Lepiller
parent 493b6f6d14
commit 5f9d9471c7
No known key found for this signature in database
GPG Key ID: 53D457B2D636EE82
1 changed files with 23 additions and 0 deletions

View File

@ -51,6 +51,7 @@
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages python)
#:use-module (gnu packages python-xyz)
#:use-module (gnu packages readline)
#:use-module (gnu packages tls)
#:use-module (gnu packages xiph))
@ -363,6 +364,28 @@ I2C and SPI devices attached to the USB Hub.")
files and applications for iOS devices, it's written in C")
(license license:gpl2)))
(define-public libirecovery
(package
(name "libirecovery")
(version "1.0.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/libimobiledevice/libirecovery")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"0p9ncqnz5kb7qisw00ynvasw1hax5qx241h9nwppi2g544i9lbnr"))))
(build-system gnu-build-system)
(inputs (list readline libusb))
(native-inputs (list autoconf automake libtool pkg-config))
(home-page "https://libimobiledevice.org/")
(synopsis "Communication library with iBoot/iBSS of iOS devices via USB")
(description "Libirecovery is a cross-platform library which implements
communication to iBoot/iBSS found on Apple's iOS devices via USB.")
(license license:lgpl2.1)))
(define-public libplist
(package
(name "libplist")