gnu: Add idevicerestore.

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

Signed-off-by: Julien Lepiller <julien@lepiller.eu>
This commit is contained in:
Jacob Hrbek 2022-09-22 21:25:11 +02:00 committed by Julien Lepiller
parent 5f9d9471c7
commit f7a68436ed
No known key found for this signature in database
GPG key ID: 53D457B2D636EE82

View file

@ -43,6 +43,7 @@ (define-module (gnu packages libusb)
#:use-module (guix build-system python)
#:use-module (gnu packages autotools)
#:use-module (gnu packages compression)
#:use-module (gnu packages curl)
#:use-module (gnu packages gnupg)
#:use-module (gnu packages gtk)
#:use-module (gnu packages java)
@ -386,6 +387,28 @@ (define-public libirecovery
communication to iBoot/iBSS found on Apple's iOS devices via USB.")
(license license:lgpl2.1)))
(define-public idevicerestore
(package
(name "idevicerestore")
(version "1.0.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/libimobiledevice/idevicerestore")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"1w7ywp77xc6v4hifi3j9ywrj447vv7fkwg2w26w0lq95f3bkblqr"))))
(build-system gnu-build-system)
(inputs (list libusb libirecovery libimobiledevice libzip curl zlib))
(native-inputs (list autoconf automake libtool pkg-config))
(home-page "https://libimobiledevice.org/")
(synopsis "CLI tool to restore firmware files to iOS devices")
(description "This utility is used to restore bricked or otherwise
broken iOS devices.")
(license license:lgpl3+)))
(define-public libplist
(package
(name "libplist")